document.write("<img src='img/topscroll/sample.jpg' id='topscrollimg' />");

$(document).ready(function(){

 var agent = navigator.userAgent;
 smartphone = 0;
 if(agent.search(/iPhone/) != -1){
	smartphone = 1;
 }else if(agent.search(/iPad/) != -1){
	smartphone = 1;
 }else if(agent.search(/Android/) != -1){
	smartphone = 1;
 }


setTimeout("wts(1)",4000);
	setTimeout("wts(2)",12000);
	setTimeout("wts(3)",20000);
	setTimeout("wts(4)",28000);
	setTimeout("wts(5)",36000);
});

function wts(id){

 
	if (jQuery.browser.webkit && smartphone == 1) {
		n = (id*580)*-1;
		$("#topscrollimg").css({'-webkit-transform':'translate3d('+n+'px,0,0)'});
	}else{
		n = (420+id*580)*-1;
		$("#topscrollimg").animate({left:n},1500);
	}
	
}

