try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}

$(document).ready(function() {
	
/* Initiate click event for site map animation */	
$("#siteMapTrigger").click(function () {
	$("#siteMapNav").toggle();
	$(this).toggleClass("active"); return false;
});

/* Initiate Tool Tip for Rates Page */
$(".tooltip a").hover(function() {
	$(this).next("div").animate({opacity: "show"}, "slow");		
}, function() {
	$(this).next("div").animate({opacity: "hide"}, "fast");
});

/* Initiate Tab UI for product Detail Page */
if ( $('ul.tabNavigation').length )
  $("ul.tabNavigation").tabs();
});