var $j = jQuery.noConflict();

$j(document).ready(function() { 
					
	var homeFeatureMessages = $j("#messages div");
	var tabs = $j("#controls li");
	
	homeFeatureMessages.hide();
	homeFeatureMessages.eq(0).show();
	
	tabs.hover(function () {
			  $j(this).addClass('selected').siblings().removeClass('selected');
			  targetImg = '#' + $j(this).attr('id') + '-msg';
			  //console.log(targetImg);
			  homeFeatureMessages.hide();
			  $j(targetImg).show();
		 });
		 
	tabs.mouseleave(function() { 
		 	homeFeatureMessages.hide();
			homeFeatureMessages.eq(0).show();
		 });
		 
    $j('#testimonials').cycle({
		timeout: 5000,
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
    $j('#press').cycle({
		delay: 2500,
		timeout: 5000,
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	// Build the product buttons
	var btn_fuel = $($('#tabs ul li:nth-child(2) a'));
	var btn_ignite = $($('#tabs ul li:nth-child(3) a'));
	var btn_stoke = $($('#tabs ul li:nth-child(4) a')); 
	
	$(btn_fuel).click(function() {
		window.location.href = $(btn_fuel).attr('title');
	});
	
	$(btn_ignite).click(function() {
		window.location.href = $(btn_ignite).attr('title');
	});
	
	$(btn_stoke).click(function() {
		window.location.href = $(btn_stoke).attr('title');
	});


	
});
