$(document).ready(function()
{
	if ( $.browser.msie && $.browser.version == "6.0" )
	{
		$.fn.over = function()
		{
			return this.hover(function()
			{
				$(this).addClass('over');
			},
			function()
			{
				$(this).removeClass('over');
			});
		};
		$('div.project_overview img').over();
		$('div#thumbs img').over();
	}

	$('#thumbs a:first, #slides img:first').addClass('selected');

	$('#thumbs a').click(function()
	{
		$('#thumbs a').removeClass('selected');
		$(this).addClass('selected');

		var thisTarget = $(this).attr('href');

		$('#slides img').removeClass('selected');
		$(thisTarget).addClass('selected');
		this.blur();
		return false;
	});
});