/** 
 * @author Raphael
 */
			$(document).ready(function(){
				for (var i=0; i < 9999; i++) {
					$('.emp_1').animate({
					    paddingLeft: "280px"
					  }, 5000, function() {
					    document.getElementById('emp_1_2').src = "images/empilhadeira_2.png";
					  });
					  $('.emp_1').animate({
					    paddingLeft: "0px"
					  }, 5000, function() {
					    document.getElementById('emp_1_2').src = "images/empilhadeira_1.png";
					  });
				};
			});
