$(document).ready(function() {
	homepage_rotator();
});


function homepage_rotator() {
	if( ! $('body#home').size() ) { return; }
	
	var images = $('.hero img');
	setInterval(function(){
		var current = images.filter('img:visible');
		var to = images.index( current ) + 1 < images.size() ? images.eq( images.index( current ) + 1 ) : images.eq( 0 );
		current.fadeOut(2000);
		to.fadeIn(2000); 
	}, 7000);
}
