function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		Eset_interior_template_11_over = newImage("images/Eset_interior_template_11-o.jpg");
		Eset_interior_template_12_over = newImage("images/Eset_interior_template_12-o.jpg");
		Eset_interior_template_13_over = newImage("images/Eset_interior_template_13-o.jpg");
		Eset_interior_template_14_over = newImage("images/Eset_interior_template_14-o.jpg");
		Eset_interior_template_15_over = newImage("images/Eset_interior_template_15-o.jpg");
		Eset_interior_template_16_over = newImage("images/Eset_interior_template_16-o.jpg");
		Eset_interior_template_17_over = newImage("images/Eset_interior_template_17-o.jpg");
		Eset_interior_template_18_over = newImage("images/Eset_interior_template_18-o.jpg");
		Eset_interior_template_20_over = newImage("images/Eset_interior_template_20-o.jpg");
		preloadFlag = true;
	}
}



function startList() {
	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", "");
   				}
		   	}
	  	}
	  	navRoot.style.display = "none";
	  	navRoot.style.display = "block";
	}
	
}
window.onresize=startList;

