function setHover() {
		$('#MainNav ul div.Flyout').each(function(i) { 
			var ieMat=document.createElement('iframe');
			if(document.location.protocol == "https:") {
				ieMat.src="../html/blank.html"; }
			else if(window.opera != "undefined") {
				ieMat.src=""; }
			else {
			ieMat.src="javascript:false";
			ieMat.scrolling="no";
			ieMat.frameBorder="0";
			ieMat.style.width=$(this).get(0).offsetWidth+"px";
			ieMat.style.height=$(this).get(0).offsetHeight+"px";
			ieMat.style.zIndex="-1";
			
			$(this).children('div:first').prepend(ieMat); 
			}
			
			// add hover class to MainNav first level list items.
			$('#MainNav ul:first').children('li').hover(function(){
				$(this).addClass("iehover");
			},function(){
				$(this).removeClass("iehover");
			});
		});
}
	
$(document).ready(function() {
	setHover();
});
