
function moveLeft() {

  	
  $('#van').animate({left: '-=150%'},15000); // change the second value to a lower number to speed up and vice versa (time in milliseconds to cross 150% of screen)

}

jQuery(document).ready(function(){
	
	moveLeft();

});
