// Adds hover functionality to the Services menu to keep IE happy
// Waits half a second before removing the class in case the user mouses out by mistake
function addHoverToServices(){
	var timerID = 0;
	$(".e_services").hover(
		function(){
			clearTimeout(timerID);
			$(this).addClass("hover");
		},
		function(){
			timerID = setTimeout("$('.e_services').removeClass('hover')", 500);
		}
	)
}

// Forces the Holly Hack on elements
function forceHollyHack(elem) {
	elem.css("height", "1%");
}

$(function(){
	addHoverToServices();
	//forceHollyHack($(".ele-MyServices-StartNew .e_list div.e_productDetails"));
	
})



