// JavaScript Document/*! * jQuery UI 1.8.2 * * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI */(function(c){c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.2",plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,d)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")=="hidden")return false;b=b&&b=="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a<b+d},isOver:function(a,b,d,e,f,g){return c.ui.isOverAxis(a,d,f)&&c.ui.isOverAxis(b,e,g)},keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none")},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this,"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==undefined)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position");if(b=="absolute"||b=="relative"||b=="fixed"){b=parseInt(a.css("zIndex"));if(!isNaN(b)&&b!=0)return b}a=a.parent()}}return 0}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b||"area"==b?a.href||!isNaN(d):!isNaN(d))&&!c(a)["area"==b?"parents":"closest"](":hidden").length},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}})}})(jQuery);;/*** hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+* <http://cherne.net/brian/resources/jquery.hoverIntent.html>* * @param  f  onMouseOver function || An object with configuration options* @param  g  onMouseOut function  || Nothing (use configuration options object)* @author    Brian Cherne <brian@cherne.net>*/(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);/*** cycle lite*/(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery)function update(){			// adjust column height	var $leftHeight = $('#sidebar1').height();	var $rightHeight = $('#right').height();		if($rightHeight==null){		$rightHeight = 0;		}    var $centerHeight = $('#mainContent').height();	if($centerHeight==null){		$centerHeight = 0;		}	var $wideHeight = $('#wide').height();	if($wideHeight==null){		$wideHeight = 0;		}		//alert('left:'+ $leftHeight + ', right:'+ $rightHeight + ', center:'+ $centerHeight  + ', wide:'+ $wideHeight );	var array = [$leftHeight, $rightHeight, $centerHeight, $wideHeight];	var maxHeight = Math.max.apply(Math, array);	//alert('max:'+ maxHeight );	$('#mainContent').height(maxHeight);	$('#sidebar1').height(maxHeight-15); // 15 padding	}function setSideNavOpacity(skip){		if (jQuery.browser.msie &&  parseInt(jQuery.browser.version) < 8){		// fadeOUT teasetTxt		$("#teaserTxt").fadeOut(300);	}			//alert('setSideNavOpacity"' + skip);	if(true){				if(0==skip){			$("#tBuyL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tBuyL").css({backgroundPosition:'0px 0px', color:'#000000'});			}						if(1==skip){			$("#tEventInsurWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tEventInsurWindL").css({backgroundPosition:'0px 0px', color:'#000000'});			}				if(2==skip){			$("#tCoverOptWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tCoverOptWindL").css({backgroundPosition:'0px 0px', color:'#000000'});			}				if(3==skip){			$("#tPolicyWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tPolicyWindL").css({backgroundPosition:'0px 0px', color:'#000000'});		}				if(4==skip){			$("#tCallbackWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tCallbackWindL").css({backgroundPosition:'0px 0px', color:'#000000'});			}				if(5==skip){			$("#tFaqWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tFaqWindL").css({backgroundPosition:'0px 0px', color:'#000000'});			}				if(6==skip){			$("#tEventResWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tEventResWindL").css({backgroundPosition:'0px 0px', color:'#000000'});			}				if(7==skip){			$("#tVendorInsurWindL").css({backgroundPosition:'0 -116px', color:'#AC1009'});		} else {			$("#tVendorInsurWindL").css({backgroundPosition:'0px 0px', color:'#000000'});			}			}}function resetSideNavOpacity(){			if (jQuery.browser.msie &&  parseInt(jQuery.browser.version) < 8){			// fadein tesetTxt			$("#teaserTxt").fadeIn(300);		}				$("#tBuyL").css({backgroundPosition:'0 0', color:'#000000'});					$("#tEventInsurWindL").css({backgroundPosition:'0 0', color:'#000000'});				$("#tVendorInsurWindL").css({backgroundPosition:'0 0', color:'#000000'});		$("#tCoverOptWindL").css({backgroundPosition:'0 0', color:'#000000'});				$("#tFaqWindL").css({backgroundPosition:'0 0', color:'#000000'});		$("#tPolicyWindL").css({backgroundPosition:'0 0', color:'#000000'});		$("#tCallbackWindL").css({backgroundPosition:'0 0', color:'#000000'});				$("#tEventResWindL").css({backgroundPosition:'0 0', color:'#000000'});}$(window).load(function() {													//update();		// -------------------------------------// main content STARTif(true){//	$("#acc .acc").onclick(//				   //	);		// seperate mouseover event out into a function	//	function AccMouseOverEvent {//		alert('triggered #acc .acc mouseover');								  //		//if(!$(this).hasClass("closeractive") ){////			////			  //alert('has closeractive');////			  if( !$(this).hasClass("over") ){////				$("#acc").find(".subAcc").stop().slideUp(700);////			  }////					 ////			  $("#acc").find(".acc").removeClass('over');////	////			  $(this).addClass('over');////			  $(this).find(".subAcc").slideDown(700);////		////		////		} else {////			//alert('has no closeractive');////			$("#acc").find(".acc").removeClass('over').removeClass('closeractive');	////		}	//	}			//$('#acc .acc').bind('mouseover', AccMouseOverEvent ); // end bind event		$('#acc .acc').bind('click', function() {											  		//alert('triggered #acc .acc mouseover');								  		if(!$(this).hasClass("closeractive") ){						  //alert('has NOT closeractive');			  if( !$(this).hasClass("over") ){				  //alert('has NOT over');				$("#acc").find(".subAcc").stop().slideUp(700);			  }					 			  $("#acc").find(".acc").removeClass('over');				  $(this).addClass('over');			  $(this).find(".subAcc").slideDown(700);			  // remove the mouseover event			  //$('#acc .acc').unbind('mouseover');						} else {			//alert('has no closeractive');			$("#acc").find(".acc").removeClass('over').removeClass('closeractive');			}			}); // end bind event	// only trigger on the actual header wording within the <a>//	$('#acc .acc a').bind('mouseover', function() {//											  //		//alert('triggered #acc .acc mouseover');								  //		if(!$(this).parent().hasClass("closeractive") ){//			//			  //alert('has closeractive');//			  if( !$(this).parent().hasClass("over") ){//				$("#acc").find(".subAcc").stop().slideUp(700);//			  }//					 //			  $("#acc").find(".acc").removeClass('over');//	//			  $(this).parent().addClass('over');//			  $(this).parent().find(".subAcc").slideDown(700);//			  // remove the mouseover event//			  $('#acc .acc a').unbind('mouseover');//		//		//		} else {//			//alert('has no closeractive');//			$("#acc").find(".acc").removeClass('over').removeClass('closeractive');	//		}//		//	}); // end bind event	//			$('#acc .closer').bind('click', function() {											 			//alert('User clicked on closer');		 	//$('#acc').find(".subAcc").slideUp(700);			//$(this).parent().find(".subAcc").slideUp(700);			$(this).parent().parent().addClass('closeractive');									if( !$(this).parent().hasClass("over") ){				//alert('$(this).parent().hasClass("over")');		 		//$(this).parent().stop().slideUp(700);				$('#acc').find(".subAcc").hide(700);		    } else {				//alert('NOT $(this).parent().hasClass("over")');				}				});//					} // end trueif(false){	function megaHoverOverAcc(){		//alert('over');		 if( !$(this).hasClass("over") ){		 	$("#acc").find(".subAcc").stop().slideUp(700);		 }				 		 $("#acc").find(".acc").removeClass('over');		$(this).addClass('over', 700);		$(this).find(".subAcc").slideDown(700);	} 			// end megaHoverOverAcc	function megaHoverOutAcc(){ 				// spec 	}			var config2 = {    		 sensitivity: 10, // number = sensitivity threshold (must be 1 or higher)    		 interval: 50, // number = milliseconds for onMouseOver polling interval    		 over: megaHoverOverAcc, // function = onMouseOver callback (REQUIRED)    		 timeout: 200, // number = milliseconds delay before onMouseOut    		 out: megaHoverOutAcc // function = onMouseOut callback (REQUIRED)    	};		$("#acc .acc").hoverIntent(config2);	} // end false// main content END	// -------------------------------------				// -------------------------------------	// flyout window triggers		// contact	$('.content').mouseenter(function() {	  resetFlyouts();	  resetSideNavOpacity();	});	$('#eventInsurance').mouseleave(function() {	  $("#eventInsurance").fadeOut(300);	  resetSideNavOpacity();	});		$('#vendorInsurance').mouseleave(function() {	  $("#vendorInsurance").fadeOut(300);	  resetSideNavOpacity();	});			$('#coverageOptions').mouseleave(function() {	  $("#coverageOptions").fadeOut(300);	  resetSideNavOpacity();	});		$('#faqs').mouseleave(function() {	  $("#faqs").fadeOut(300);	  resetSideNavOpacity();	});		$('#contactUs').mouseleave(function() {	  $("#contactUs").fadeOut(300);	  resetSideNavOpacity();	});				$('#managePolicy').mouseleave(function() {	  $("#managePolicy").fadeOut(300);	  resetSideNavOpacity();	});			$('#eventResources').mouseleave(function() {	  $("#eventResources").fadeOut(300);	  resetSideNavOpacity();	});						// end policy		function resetFlyouts(){		$("#eventInsurance").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#coverageOptions").fadeOut(300);		$("#faqs").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#eventResources").fadeOut(300);		resetSideNavOpacity();			}		$("#tBuyLink").hover(	  function () {	    setSideNavOpacity(0);		$("#coverageOptions").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#faqs").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#eventInsurance").fadeOut(300);					  }, 	  function () {		// spec	  }	);			$("#tEventInsurWind").hover(	  function () {	    setSideNavOpacity(1);		$("#coverageOptions").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#faqs").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#eventInsurance").fadeIn(300);					  }, 	  function () {		// spec	  }	);		$("#tVendorInsurWind").hover(	  function () {	    setSideNavOpacity(7);		$("#eventInsurance").fadeOut(300);		$("#coverageOptions").fadeOut(300);		$("#faqs").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#vendorInsurance").fadeIn(300);	  }, 	  function () {		// spec	  }	);			$("#tCoverOptWind").hover(	  function () {		  setSideNavOpacity(2);		$("#eventInsurance").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#faqs").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#coverageOptions").fadeIn(300);	  }, 	  function () {		// spec	  }	);		$("#tFaqWind").hover(	  function () {		  setSideNavOpacity(5); // was added later		$("#eventInsurance").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#coverageOptions").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#faqs").fadeIn(300);	  }, 	  function () {		// spec	  }	);		$("#tEventResWind").hover(	  function () {		  setSideNavOpacity(6); // was added later		$("#eventInsurance").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#coverageOptions").fadeOut(300);		$("#faqs").fadeOut(300);		$("#eventResources").fadeIn(300);	  }, 	  function () {		// spec	  }	);		// POLICY//	$("#tPolicyWind").hover(//	  function () {//		  setSideNavOpacity(3);//		$("#eventInsurance").fadeOut(300);//		$("#coverageOptions").fadeOut(300);//		$("#contactUs").fadeOut(300);//		$("#managePolicy").fadeIn(300);//	  }, //	  function () {//		// spec//	  }//	);			// policy	function megaHoverOverFlyPolicy(){		//alert('over');		 setSideNavOpacity(3);		$("#eventInsurance").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#coverageOptions").fadeOut(300);		$("#faqs").fadeOut(300);		$("#contactUs").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#managePolicy").fadeIn(300);	}  // end megaHoverOverFly		function megaHoverOutFlyPolicy(){ 		// spec	}			var config4 = {    		 sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)    		 interval: 50, // number = milliseconds for onMouseOver polling interval    		 over: megaHoverOverFlyPolicy, // function = onMouseOver callback (REQUIRED)    		 timeout: 0, // number = milliseconds delay before onMouseOut    		 out: megaHoverOutFlyPolicy // function = onMouseOut callback (REQUIRED)    	};		$("#tPolicyWind").hoverIntent(config4);			// END POLICY		$("#tCallbackWind").hover(	  function () {		  setSideNavOpacity(4);		$("#eventInsurance").fadeOut(300);		$("#vendorInsurance").fadeOut(300);		$("#coverageOptions").fadeOut(300);		$("#faqs").fadeOut(300);		$("#managePolicy").fadeOut(300);		$("#eventResources").fadeOut(300);		$("#contactUs").fadeIn(300);	  }, 	  function () {		// spec	  }	);			// home page side nav		$(".navItemH").hover(			  function () {		  //alert('navItemH hover');		$(this).find(".subNavH").fadeIn();		var $width = $(this).find(".subNavH").width(); 		var $width2 = $(this).width(); 		//$(this).width($width + 'px');				//$(this).width($width + 'px');		//alert('subNav width: ' + $width + 'navItem width: ' + $width2);		//$(this).width($width + 'px');	  }, 	  function () {		  //alert('navItemH out');		//$(this).find(".subNavH").stop().slideUp(100, function() {//			//	empty call back	  //  		});				$(this).find(".subNavH").hide();					  }	);	}); // window.load$(document).ready(function() {	if(!($.browser.msie && parseInt(jQuery.browser.version)==7)){		$("#mainContent").hide().fadeIn(300);		}		});					 		
