	//<![CDATA[
	// --------------------------------------------------------------------------
	window.onDomReady = initReady;
	function initReady(fn) {
		if(document.addEventListener) {
		  document.addEventListener("DOMContentLoaded", fn, false);
		} else {
		  document.onreadystatechange = function(){readyState(fn)}
		}
	}
	function readyState(func) {
		if(document.readyState == "interactive" || document.readyState == "complete") {
			func();
		}
	}
	window.onDomReady(onReady);
	function onReady() {
		vfStart();
		if(document.getElementById('MapG')) load();
	}
	// --------------------------------------------------------------------------
	
	function vfStart() {
		var obj = document.getElementById("HL1").cloneNode (true);
		document.getElementById('Head').appendChild(obj);		
		obj.style.color = "rgb(30,30,30)";	
		obj.style.top = "79px";
		obj.style.left = "3px";
		obj.style.zIndex = "2";
		var obj = document.getElementById("HL2").cloneNode (true);
		document.getElementById('Head').appendChild(obj);		
		obj.style.color = "rgb(30,30,30)";	
		obj.style.top = "109px";
		obj.style.left = "3px";
		obj.style.zIndex = "2";



		// All blur
		vsLinks = document.getElementsByTagName('a');
		for(i = 0; i < vsLinks.length; i++){
			vsLinks[i].onfocus = vfLinkBlur;
			if(vsLinks[i].id.substring(0, 1) =='N') {
				vsLinks[i].onmouseover = vfSubShow;
				vsLinks[i].onmouseout = vfSubHide;
			}
		}
		vsDownLinks = document.getElementsByTagName('div');
		var z = 0;
		for(i = 0; i < vsDownLinks.length; i++){
			if(vsDownLinks[i].id.substring(0, 1) =='U') {
				vsDownLinks[i].onmouseover = vfSubShow;
				vsDownLinks[i].onmouseout = vfSubHide;
			}
		}
	}

	function vfLinkBlur(evt) {
		this.blur();
	}
	
	function vfSubShow(evt) {
		var i = this.id.substring(1);
		if(document.getElementById('P' + i).className == "Ph") {
			document.getElementById('N' + i).style.backgroundPosition = 'right -34px';
			document.getElementById('P' + i).style.backgroundPosition = '0 -34px';
		}
		document.getElementById('U' + i).style.left = document.getElementById('P' + i).offsetLeft + 4 + 'px';
		document.getElementById('U' + i).style.display = 'block';
	}
	function vfSubHide(evt) {
		var i = this.id.substring(1);
		if(document.getElementById('P' + i).className == "Ph") {
			document.getElementById('N' + i).style.backgroundPosition = 'right 0';
			document.getElementById('P' + i).style.backgroundPosition = '0 0';
		}
		document.getElementById('U' + i).style.display = 'none';
	}

	function vfFootOut(evt) {
		var i = this.id.substring(5);
		FootAction[i] = 0;
		vfGoFOut(i);
	}
	function vfFootIn(evt) {
		var i = this.id.substring(5);
		FootAction[i] = 1;
		vfGoFIn(i);
	}
	function vfGoFIn(i) {
		if(FootAction[i] == 1) {
			if(FootOpacity[i] < 6) {
				FootOpacity[i] = FootOpacity[i] + 1;
				SetOpacity('FootB' + i, FootOpacity[i])
				window.setTimeout('vfGoFIn(' + i + ')', 35);
			}
		}
	}
	function vfGoFOut(i) {
		if(FootAction[i] == 0) {
			if(FootOpacity[i] > 0) {
				FootOpacity[i] = FootOpacity[i] - 1;
				SetOpacity('FootB' + i, FootOpacity[i])
				window.setTimeout('vfGoFOut(' + i + ')', 10);
			}
		}
	}
		
	function SetOpacity(objId, opacity) {
		opacity = (opacity == 100)?99.999:opacity;
		obj = document.getElementById(objId);
		obj.style.filter = 'alpha(opacity:' + opacity + ')';
		obj.style.KHTMLOpacity = opacity/100;
		obj.style.MozOpacity = opacity/100;
		obj.style.opacity = opacity/100;
	}
	
	//]]>
