Image1= new Image()
Image1.src = ""

Image2 = new Image()
Image2.src = ""

Image3 = new Image()
Image3.src = ""

Image4 = new Image()
Image4.src = ""

Image5 = new Image()
Image5.src = ""

Image6 = new Image()
Image6.src = ""


function navShow(id)
 {
 document.getElementById(id).style.background = "#555555";
 //opacity(id, 0, 100, 200);
 }
 
 
 
function navHide(id){
 document.getElementById(id).style.background = "#ff5555";
 //opacity(id, 100, 0, 200);
 }
 
 
 function highlightOn(id) {
 
 var thisId = document.getElementById(id);
 
 //alert(thisId.getAttribute("className"));
 thisId.setAttribute("class", "nav_on");
 thisId.setAttribute("className", "nav_on");
 //alert(thisId.getAttribute("className"));
 //alert(holdClass);
 }
 
 function highlightOff(id) {
 
 var thisId = document.getElementById(id);
 
 //alert(thisId.getAttribute("className"));
 thisId.setAttribute("class", "nav_off");
 thisId.setAttribute("className", "nav_off");
 //alert(thisId.getAttribute("className"));
 //alert(holdClass);
 }
 
 function highlightOver(id) {
 
 var thisId = document.getElementById(id);
 
 //alert(thisId.getAttribute("className"));
 thisId.setAttribute("class", "nav_on");
 thisId.setAttribute("className", "nav_on");
 //alert(thisId.getAttribute("className"));
 //alert(holdClass);
 }

	/*sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);*/


//var frameList = new Array("frame_1","frame_r","frame_2","frame_3","frame_4","frame_5");
	//var f = frameList.length;
	
/*function iframeShow(id){
	document.getElementById(id).style.display = "block";
	//opacity(id, 0, 100, 400);
	for (var k=0; k<f; k++){
	var frameId = frameList[k];
	if(frameId!=id){
	document.getElementById(frameId).style.display = "none";
	
	}
	}
	}*/
	
	var navList = new Array("nav_1","nav_2");
	var n = navList.length;
	
	sfHover = function() {
	for (var k=0; k<n; k++){
	var navId = navList[k];
	var sfEls = document.getElementById(navId).getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);