
/* non-css fly-out for IE6 */
if (document.compatMode){

	window.onload = function() {
		if ( document.all && document.getElementById) {
			navRoot = document.getElementById("nav");
			for (i=0; i < navRoot.childNodes.length; i++) {
				var node = navRoot.childNodes[i];
				if (node.nodeName == "LI") {
					node.onmouseover = function() { this.className += " over"; }
					node.onmouseout  = function() { this.className = this.className.replace(" over", "");
					}
				}
			}
		}
	}
}

/* image rollovers for menu */
menuimg = new Array();
menuimg = [ "jewelry", "gems", "gallery", "artists", "press", "links", "for-custom-jewelry", "loose-gems", "finished-pieces", "custom-jewelry" ];
for (x in menuimg){
	var imgon = new Image;
	imgon.src = "/s/img/menu/" + menuimg[x] + "-on.gif"
}

function swapimg(foo){
	var imgsrc = foo.src;
	if (document.images){
	var newsrc;
		if ( imgsrc.match("-on.gif") ){
			newsrc = imgsrc.replace(/-on.gif/, ".gif");
		}
		else {
			newsrc = imgsrc.replace(/.gif/, '-on.gif');
		}
		foo.src = newsrc;
	}
}


