function scroll(){
	$(".photos").children(":first").animate({left: -1000}, 1000, function(){
		if($(this).attr("src") == "image/photo/photo1.jpg")
			$(".photos").append("<img src = 'image/photo/photo1_liveitownit.jpg' />");

		else
			$(".photos").append("<img src = '" + $(this).attr("src") + "' />");

		$(this).remove();
		
	});
	
	$(".liveitownit").animate({left: -1000}, 1000);
	$(".photos").children(":nth-child(2)").animate({left: 0}, 1000);
	
}

