$(function() {
	var t=1;
	
});
function rotator() {
	$("#home_hero"+t).animate({
		opacity: 1,
		left: '+=50'
	}, 600).animate({
		opacity: 1
	}, 5000).animate({
		opacity: 0,
		left: '-=50'
	}, 600, function() {
	    if(t===4) { t=1; } else { t++; }
	    rotator();
	});
}
