﻿
function setIncentivesMenu(){
jQuery('#custom_brand_home-incentives').click(function(){ 
	linkTrack('content','seize_the_day');
	location.href="/en/incentives/programs/servicecontract/";
});
jQuery('#custom_brand_home-incentives').bind('mouseenter', function(){ jQuery(this).addClass("custom_brand_home-incentives-hover")});
jQuery('#custom_brand_home-incentives').bind('mouseleave', function(){ jQuery(this).removeClass("custom_brand_home-incentives-hover")});
}

onload_register('setIncentivesMenu();');


function hideShowIncentives(toggle) {
	var oVal = (toggle == "block")?1:0;
//console.log("hideShowIncentives | toggle : "+toggle +" | oVal :"+oVal);

	jQuery('#custom_brand_home-incentives').fadeTo('normal', oVal, function(){ 
		if(oVal == 1) {
			jQuery(this).show();
		} else {
			jQuery(this).hide();
		}
		
	});
	
}
