// JavaScript Document 
        function makeMove(id,time,sp){
            var t = document.getElementById(id);
            t.style.position = "absolute";
	     //t.style.left=t.parentNode.parentNode.clientWidth;
            setInterval(function(){
                // alert(t.clientWidth);
			
                var l = t.style.left;
                t.style.left = (l? parseInt(l):t.clientLeft) - parseInt(sp);
                
                if(parseInt(t.style.left) + t.clientWidth < t.parentNode.parentNode.clientLeft  ){
                    t.style.left = parseInt(t.parentNode.parentNode.style.width) + 30;
                }
            },time);
        }
