	
	$(document).ready(function() {
	$('a.surf_button').hide();
//	$('div#main_picture').css('padding-top', '100px');
	$('img#main').css('margin-top', '45px');
	$('img#main').css('margin-bottom', '45px');	
	$('a.to_page').removeAttr("href");

	$('a.to_page').click(function()
		{
		$('a.to_page').attr('class', 'to_page that_page');
		$(this).attr('class', 'to_page active_page');
		var image_identifier = $(this).attr('id');

		if(image_identifier == '01')
			{
			$('img#main').css('margin-top', '45px');
			$('img#main').css('margin-bottom', '45px');			
			}
		else
			{ $('img#main').css('margin', '0'); }

		var image_url = 'cases/sos-paix-' + $(this).attr('id') + '.jpg';
//		$(this).removeAttr("href");
//		$('img#main').attr('src', image_url);

		if (image_identifier == '01')
		   { $("p#credits_photos").show(); }
		else
		   { $("p#credits_photos").hide(); }

		$('img#main').fadeTo("fast", 0.10);
		$('img#main').attr('src', image_url);
		$('img#main').fadeTo("slow", 1.00);
		
	});


	}); // end document.ready
