$(function(){
	//photo
	var step = 108;
	function goStep(){
	$(".clumbBox").animate({top:-step},400,function(){
			$(".clumbBox .clumb:first").insertAfter(".clumbBox .clumb:last");
			$(this).css({top:0})//goBack
		});
	}
	$(".photoBox").hover(function(){
		clearInterval(timer);	
	},function(){
		timer = setInterval(goStep,2000);	
	})
	var timer = setInterval(goStep,2000);
})
