// JavaScript Document
if(document.images){
	home_0 = new Image;
	home_1 = new Image;
	about_0 = new Image;
	about_1 = new Image;
	product_0 = new Image;
	product_1 = new Image;
	gallery_0 = new Image;
	gallery_1 = new Image;
	search_0 = new Image;
	search_1 = new Image;
	contact_0 = new Image;
	contact_1 = new Image;
	home_0.src = "/images/template/home_0.gif";
	home_1.src = "/images/template/home_1.gif";
	about_0.src = "/images/template/about_0.gif";
	about_1.src = "/images/template/about_1.gif";
	product_0.src = "/images/template/product_0.gif";
	product_1.src = "/images/template/product_1.gif";
	gallery_0.src = "/images/template/gallery_0.gif";
	gallery_1.src = "/images/template/gallery_1.gif";
	search_0.src = "/images/template/search_0.gif";
	search_1.src = "/images/template/search_1.gif";
	contact_0.src = "/images/template/contact_0.gif";
	contact_1.src = "/images/template/contact_1.gif";
}
else {
	home_0 = "";
	home_1 = "";
	about_0 = "";
	about_1 = "";
	product_0 = "";
	product_1 = "";
	gallery_0 = "";
	gallery_1 = "";
	search_0 = "";
	search_1 = "";
	contact_0 = "";
	contact_1 = "";
	document.one = "";
	document.two = "";
	document.three = "";
	document.four = "";
	document.five = "";
}
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
			
		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", "");
   				}
   			}
  		}		
 	}	
}
window.onload=startList;
