
function scootIt(){
	var scooter=jQuery("#wrap-showcase");
	var currentLeft=parseInt(scooter.css("left"));
	if(scooter.data("scooting")){
		if(-currentLeft+620==scooter.width()){
			scooter.animate({left:"0"},"normal");
		} else{
			scooter.animate({left:"-=620px"},"normal");
		}
	}
}

window.init[window.init.length]=function(){
	var scooter=jQuery("#wrap-showcase");
	scooter.data("scooting",true);
	scooter.mouseover(function(){scooter.data("scooting",false)});
	scooter.mouseout(function(){scooter.data("scooting",true)});
	setInterval(scootIt,5000);
}
