/*
son of suckerfish menu script from:
http://www.htmldog.com/articles/suckerfish/dropdowns/
 */
 
 sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			this.style.zIndex=200; //this line added to force flyout to be above relatively positioned stuff in IE
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


/* 

added javascript bookmarking functionality to this script

*/
 
<!-- // Hide script from older browsers 
var urlAddress = "http://www.chievolution.com"; 
var pageName = "Chievolution.com - Salt Lamps, Wholesale Salt Lamps, Salt Lamp Importers and Cobblestone Walk from Chi Evolution"; 
function addToFavorites() { if (window.external) { window.external.AddFavorite(urlAddress,pageName) 
} else { alert("Sorry, only Internet Explorer supports this option.  \nIf you are using the Mozilla Firefox web browser, please press Ctrl-D to bookmark us.\nIf using the Opera browser, press Ctrl-T. \nIf you are using Safari on a Macintosh, click the \"+\" button on the interface to add us. \nThanks!"); 
} } // -->