<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("mainnav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
	prodNav();
}

function prodNav() {
		allH2 = document.getElementsByTagName("H2");
		//alert(allH2.length);
		//alert(allH2[1].tagName);
		for(i=0; i<allH2.length; i++){
			//alert("dd");
			if(allH2[i].className == "prod_cate"){
				//alert(allH2[i].tagName);
				allH2[i].onclick = function(){
					//this.nextSibling.style.display ="block";
					//alert(this.nextSibling.className);
					//alert("dd");
					if(this.nextSibling.className == "prod_nav off"){
						this.nextSibling.className = "prod_nav on";
					}else if(this.nextSibling.className == "prod_nav on"){
						this.nextSibling.className = "prod_nav off";
					}
				}	
			}	
		}
	}
window.onload=startList;

//--><!]]>
