function initPrize() {
	initMenu();
}

function initMenu() {
	var menu = document.getElementById("menue").getElementsByTagName("img");
	
	for (i = 0; i < menu.length; i++) {
		
		menu[i].onmouseover	= hilightMe;
		menu[i].onmouseout	= hilightMe;
		menu[i].parentNode.onfocus		= function() { if (this.blur) this.blur() };
	}
}

function hilightMe(e) {
	var targ;
	if (!e) var e = window.event;
	if (e.target) targ = e.target;
	else if (e.srcElement) targ = e.srcElement;
	if (targ.nodeType == 3) // defeat Safari bug
		targ = targ.parentNode;
	
	if (targ.className.search(/\bsel\b/) == -1) {
		if (targ.src.search(/\by_/) != -1) 
			targ.src = targ.src.replace(/\by_/, "r_");
		else 
			targ.src = targ.src.replace(/\br_/, "y_");
	}
}

function lolightMe(e) {
	e.src = e.src.replace(/\br_/, "y_");
}
