function swap(){
	//this.className="msieFix";
	//alert(this.className); 
	this.className=this.className?'msieFix':'over';
}
function swapBack(){
	//this.className="trigger";
	//alert(this.className);
	this.className=this.className=='msieFix'?'trigger':'';
	//alert(this.className);
}
function swapfocus() {this.parentNode.parentNode.parentNode.className="msieFix"}
function swapblur() {this.parentNode.parentNode.parentNode.className="trigger"}
function TJK_dropDown(){// v1.0 Copyright (c) 2006 TJKDesign - Thierry Koblentz
	if (document.getElementById){
	var n=document.getElementById('nav');
	var LI = n.getElementsByTagName("li");
	var zLI= LI.length;
		for(var k=0;k<zLI;k++){
			if(LI[k].id){
//			LI[k].firstChild.href="#";
			if (LI[k].className != "msieFix") {
				LI[k].className="trigger";	
			}
			}
			if(LI[k].parentNode.parentNode.className=="trigger"){LI[k].firstChild.onfocus=swapfocus;LI[k].firstChild.onblur = swapblur}
			if(LI[k].className=="trigger"){LI[k].onmouseover=swap;LI[k].onmouseout=swapBack}
		}
	}
}

//window.onload=rollover;
window.onload=function(){TJK_dropDown();}