 $(function(){
	$("#photo_side a").click(function(){
		$("#photo_main img").before("<img src='"+$(this).attr("href")+"' alt=''>");
		$("#photo_main img:last").fadeOut("fast",function(){
			$(this).remove();
		});
		return false;
	});
	$("img.next").click(function(){
		$("#photo_side .pageWrap").animate({
			marginLeft : parseInt($("#side .pageWrap").css("margin-left"))-140+"px"
		},"fast");
	});
	$("img.prev").click(function(){
		$("#photo_side .pageWrap").animate({
			marginLeft : parseInt($("#side .pageWrap").css("margin-left"))+140+"px"
		},"fast");
	});
});
// JavaScript Document
