$(document).ready(function(){
	setTimeout('move()', 1500);
});

function move()
{
	$("#banner_img").animate({"marginLeft": "+=50px"}, 5000, 'linear');	
}
