$(document).ready(function(){
	var max = $(".bigimages .bigimage").length-1;
	var currentPhoto = 0;
	
	$(".bigimages .bigimage").css("display","none");
	$(".bigimages .bigimage:eq(0)").css("display","block");
	$(".miniphoto a").each(function(i){
		$(this).click(function(){
			if(currentPhoto != i){
				var hide = $(".bigimages .bigimage").eq(currentPhoto);
				var show = $(".bigimages .bigimage").eq(i);
				hide.fadeOut("slow", function(){
					show.fadeIn("slow");
				});
				currentPhoto = i;
			}
		});
	});
});


