$(function() {
	$('#photo2, #photo3, #photo4, #photo5, #photo6, #photo7').css('display','none');
	$('#thumb1, #thumb2, #thumb3, #thumb4, #thumb5, #thumb6, #thumb7').css('cursor','pointer');

	$('#thumb1').click(function() {
		$('#photo2, #photo3, #photo4, #photo5, #photo6, #photo7').fadeOut('slow');
		$('#photo1').fadeIn('slow');
	});
	$('#thumb2').click(function() {
		$('#photo1, #photo3, #photo4, #photo5, #photo6, #photo7').fadeOut('slow');
		$('#photo2').fadeIn('slow');
	});
	$('#thumb3').click(function() {
		$('#photo1, #photo2, #photo4, #photo5, #photo6, #photo7').fadeOut('slow');
		$('#photo3').fadeIn('slow');
	});
	$('#thumb4').click(function() {
		$('#photo1, #photo2, #photo3, #photo5, #photo6, #photo7').fadeOut('slow');
		$('#photo4').fadeIn('slow');
	});
	$('#thumb5').click(function() {
		$('#photo1, #photo2, #photo3, #photo4, #photo6, #photo7').fadeOut('slow');
		$('#photo5').fadeIn('slow');
	});
	$('#thumb6').click(function() {
		$('#photo1, #photo2, #photo3, #photo4, #photo5, #photo7').fadeOut('slow');
		$('#photo6').fadeIn('slow');
	});
	$('#thumb7').click(function() {
		$('#photo1, #photo2, #photo3, #photo4, #photo5, #photo6').fadeOut('slow');
		$('#photo7').fadeIn('slow');
	});
});
