if( ! window['cherokee'] ) {
	window['cherokee'] = {}
	var cherokee = window['cherokee'];
}

(function($){
	
	$(document).ready(function() {
		cherokee.heroshot();
	});
	
	cherokee.heroshot = function() {
		var heroshots = $('.heroshot');
		heroshots.each(function(index) {
			var heroshot	=	$(this);
			var images		=	heroshot.find('img');
			images.hide().eq(0).show();
			setInterval(function(){
				var current = images.filter(':visible');
				var toShow = images.index(current) + 1 < images.size() ? images.eq(images.index(current) + 1) : images.eq(0);
				current.fadeOut(1000);
				toShow.fadeIn(1000);
			}, 6000);
		});
	}
	
})(jQuery);
