$(function() { // Made with Joy by What Cheer
	
	
	
	var timer = 5000;
	scrollInterval = setInterval(function() { advance(); }, timer);
	$('.hoverstop').hover(function() {
	    clearInterval(scrollInterval);
	  }, function() {
	    scrollInterval = setInterval(function() { advance(); }, timer);
	  });
	
	
	
	
	$('.nav_button').bind('click', function(){
		var item = $(this).attr('id');
		switchSlide(item);
		clearInterval(scrollInterval);
		return false;
	});
	
	// preload images
		$('<img />')
		.attr('src', '/wp-content/themes/whatcheer/images/content/primary/green.jpg')
		.load(function(){
		$('.profile').append( $(this) );
		});
		$('<img />')
		.attr('src', '/wp-content/themes/whatcheer/images/content/primary/allied-advantage.jpg')
		.load(function(){
		$('.profile').append( $(this) );
		});
		$('<img />')
		.attr('src', '/wp-content/themes/whatcheer/images/content/primary/connect-online.jpg')
		.load(function(){
		$('.profile').append( $(this) );
		});
		$('<img />')
		.attr('src', '/wp-content/themes/whatcheer/images/content/primary/family.jpg')
		.load(function(){
		$('.profile').append( $(this) );
		});
		$('<img />')
		.attr('src', '/wp-content/themes/whatcheer/images/content/primary/family.jpg')
		.load(function(){
		$('.profile').append( $(this) );
		});
		$('<img />')
		.attr('src', '/wp-content/themes/whatcheer/images/content/primary/pcmo.jpg')
		.load(function(){
		$('.profile').append( $(this) );
		});
	// end preload images
});
function switchSlide(item){
	var currentSelected = $('.current').attr('id');
	if(currentSelected != item){
		$('#'+currentSelected).removeClass('current');
		$('#'+item).addClass('current');
		
		if(item == 'slide-1'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/about/"><img src="/wp-content/themes/whatcheer/images/content/primary/family.jpg" alt="Family Owned and Operated since 1958" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-2'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/truck-service/"><img src="/wp-content/themes/whatcheer/images/content/primary/trust.jpg" alt="Let us Earn your Trust" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-3'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/lubricants/passenger-car-motor-oil/"><img src="/wp-content/themes/whatcheer/images/content/primary/pcmo.jpg" alt="No supplying passenger car motor oil" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-4'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/connect-online/"><img src="/wp-content/themes/whatcheer/images/content/primary/connect-online.jpg" alt="Connect Online: Keep in touch with Allied" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-5'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/going-green/"><img src="/wp-content/themes/whatcheer/images/content/primary/green.jpg" alt="Going Green: The Efficiency Experts" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-6'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/allied-advantage/"><img src="/wp-content/themes/whatcheer/images/content/primary/allied-advantage.jpg" alt="Allied Advantage: Delivering Profitability" /></a>');
			}).fadeIn();
		}
	}
}
function advance(){
	var currentSelected = $('.current').attr('id');
	// the problem here is I can't keep a running total of the item...
	if(currentSelected == 'slide-6'){
		item = 'slide-1';
	}else{
		var slidearr = currentSelected.split('-');
		var currentNum = parseInt(slidearr[1]);
		var nextNum = currentNum+1;
		var item = 'slide-'+nextNum;
	}

	if(currentSelected != item){
		$('#'+currentSelected).removeClass('current');
		$('#'+item).addClass('current');
		
		if(item == 'slide-1'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/about/"><img src="/wp-content/themes/whatcheer/images/content/primary/family.jpg" alt="Family Owned and Operated since 1958" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-2'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/truck-service/"><img src="/wp-content/themes/whatcheer/images/content/primary/trust.jpg" alt="Let us Earn your Trust" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-3'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/lubricants/passenger-car-motor-oil/"><img src="/wp-content/themes/whatcheer/images/content/primary/pcmo.jpg" alt="No supplying passenger car motor oil" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-4'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/connect-online/"><img src="/wp-content/themes/whatcheer/images/content/primary/connect-online.jpg" alt="Connect Online: Keep in touch with Allied" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-5'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/going-green/"><img src="/wp-content/themes/whatcheer/images/content/primary/green.jpg" alt="Going Green: The Efficiency Experts" /></a>');
			}).fadeIn();
		}
		if(item == 'slide-6'){
			$('.hero').fadeOut('fast', function(){
				$(this).html('<a href="/allied-advantage/"><img src="/wp-content/themes/whatcheer/images/content/primary/allied-advantage.jpg" alt="Allied Advantage: Delivering Profitability" /></a>');
			}).fadeIn();
		}
	}
	
}

