// JavaScript Document

var root_dir_sub = "http://www.elplighting.com/images/";
var root_dir_home = "http://www.elplighting.com/images/home/";

function switchNavHome(target_img, highlight){
	target_src = document.getElementById(target_img);
	target_src.src = root_dir_home + target_img + highlight + ".jpg";
}

function switchNav(target_img, highlight){
	target_src = document.getElementById(target_img);
	target_src.src = root_dir_sub + target_img + highlight + ".jpg";
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	if((selObj.options[selObj.selectedIndex].value) != ("#")){
		w = window.open(selObj.options[selObj.selectedIndex].value,'_blank');
		w.focus();
		if (restore) selObj.selectedIndex=0;
	}
	
}
