﻿/*	function setIncentivesMenu(){
jQuery('#custom_home-incentives').click(function(){
	linkTrack('content','seize_the_day');
	location.href="/en/incentives/programs/servicecontract/"; 
 });
jQuery('#custom_home-incentives-gmac a img').bind('mouseenter', function(){ jQuery(this).addClass("custom_home-incentives-hover")});
jQuery('#custom_home-incentives-gmac a img').bind('mouseleave', function(){ jQuery(this).removeClass("custom_home-incentives-hover")});
}

onload_register('setIncentivesMenu();');
*/

	/*  $(window).bind("pageshow", function() { // this is proprietary firefox event
	        $("#custom_home-incentives-gmac a img").each(function() {
	           $(this).attr("src", $(this).attr("src").replace("_CTA.png", "_CTA_rollover.png"))
	        });
	    }); */
	    
		cllc.page_ready
		(
			function()
			{
				jQuery('#custom_home-incentives-gmac a img').bind('mouseenter', function() {
					     var src = jQuery(this).attr("src").replace("CTA", "CTA_rollover"); 
						jQuery(this).attr("src", src); 
						//jQuery$(this).attr("src").replace("_CTA.png", "_CTA_rollover.png");
					}
				);
				
				jQuery('#custom_home-incentives-gmac a img').bind('mouseleave', function() {
                        var src = jQuery(this).attr("src").replace("CTA_rollover", "CTA"); 
						jQuery(this).attr("src", src);
					}
				);
			}
		);



