/** * #wBlockMain.clientHeight * #listMenuLeftRoot ul.level3.clientHeight * */function fixHeight() {		var h = document.getElementById("wBlockMain").clientHeight;	var beginnBottom = document.getElementById("wBlockBottom").offsetTop;	var heightTop = document.getElementById("wBlockTop").clientHeight;	var maxBorderBottom = 0;// 	var item = document.getElementById(idSubmenu);	var menuRoot = document.getElementById("listMenuLeftRoot");	var uls = menuRoot.getElementsByTagName("UL");	var level3Uls = uls;// 	for(var i=0;i<uls.length;i++) {// 		var item = uls[i];// 		if(item.className.match("level3")) {// 			level3Uls.push(item);// 		}// 	}// 	debugger;	for(var i=0;i<level3Uls.length;i++) {		var item = level3Uls[i];		var itemBorderBottom = item.offsetTop + item.clientHeight;		if(itemBorderBottom > maxBorderBottom) maxBorderBottom = itemBorderBottom;	}//	debugger;	if(maxBorderBottom-heightTop > beginnBottom) {		if(h < maxBorderBottom) {			document.getElementById("wBlockMain").style.height = maxBorderBottom+"px";		}	}//	alert(h);}FSMenuNode.prototype.show = function(forced) { with (this) with (obj){ // This is called to show the menu node of which it's a method. // It sets the parent's child to this, and hides any existing children of the parent node. if (!lyr || !lyr.ref) return; if (par) {  if (par.child && par.child != this) par.child.hide();  par.child = this; } // This is the positioning routine, it can be deleted if you're not using it. // It pulls values out of the stored args[] array, and uses the page.elmPos function in the // cross-browser code to find the pixel position of the parent item + menu. var offR = args[1], offX = args[2], offY = args[3], lX = 0, lY = 0,  doX = ''+offX!='undefined', doY = ''+offY!='undefined'; if (self.page && offR && (doX||doY)) {  with (page.elmPos(offR, par.lyr ? par.lyr.ref : 0)) lX = x, lY = y;  if (doX) lyr.x(lX + eval(offX));  if (doY) lyr.y(lY + eval(offY)); } // Highlight the triggering element, if any. if (offR) lightParent(offR, 1); // Show the menu and trigger any 'onshow' events. // Also raise the parent <li> to avoid z-index issues in MSIE. visible = 1; if (obj.onshow) obj.onshow(id); lyr.ref.parentNode.style.zIndex = '2'; setVis(1, forced);}	fixHeight();};function faqAccordion() {$(document).ready(function(){    $(".faqBox").accordion({ autoHeight: false });    $('a, h3').click(function(){		$(this).blur();	});  });}function init() {	listMenu.activateMenu("listMenuRoot") + listMenuLeft.activateMenu("listMenuLeftRoot");//	fixHeight();		faqAccordion();		 if (null == document.getElementById("map")) {  // do nothing  } else {    if(typeof("GLoad" == "function")) GLoad();  }}window.onload = init;