function mover(src,color){
	src.style.cursor="hand";
	src.bgColor=color;
}

function mout(src,color){
	src.bgColor=color;
}

function mclick(src,link){
	location.href=link;
}

function menuOver(src,image){
	src.style.cursor="hand";
	src.style.background="url(\'"+image.src+"\')";
	//src.background=image.src;
}

function menuOut(src,image){
	src.style.background="";
	//src.background="";
}

var gameWindow = '';
function popup(dest){
if (!gameWindow.closed && gameWindow.location) {
	if (gameWindow.location.href == 'http://www.ederon.com/'+dest){
		gameWindow.focus();
	}else{
		gameWindow.location.href = 'http://www.ederon.com/'+dest;
		gameWindow.focus();
	}
}else{
	gameWindow=window.open('/'+dest,'game','width=750,height=575,status=no,resizable=no,scrollbars=no');
}
}