var sections = new Array();
sections['home']="nav0";
sections['about']="nav1";
sections['cabinets']="nav2";
sections['counters']="nav3";
sections['closets']="nav4";
sections['contact']="nav5";


function rollOvers(image,iStatus){
	if(iStatus==1 && image.name!=sections[currentSection]){
		image.src="images/"+image.name.substring(0,1)+image.name.substring(3,image.name.length)+"_hot.gif";
	}else if(iStatus<1 && image.name!=sections[currentSection]){
		image.src="images/"+image.name.substring(0,1)+image.name.substring(3,image.name.length)+".gif";
	}
}

for(x=0;x<document.images.length;x++){
	j=0;
	if(document.images[x].name.substring(0,3)=="nav"){
		eval(document.images[x].name+".onmouseover=function(){rollOvers(this,1);}");
		eval(document.images[x].name+".onmouseout=function(){rollOvers(this,0);}");
	}
}	

if(currentSection!="" && eval("document."+sections[currentSection])){
	eval("document."+sections[currentSection]+".src='images/"+sections[currentSection].substring(0,1)+sections[currentSection].substring(3,sections[currentSection].length)+"_hot.gif';");
}