var topmenu = new Array("home","games","free games","betazone","developers","company");
var urls = new Array("/","/games/","/downloads/","/betazone/","/developers/","/company/");
	
function highLight(imagename) {
	document.images[imagename].src="/images/menu/"+imagename+"_c.png";
}

function unLight(imagename) {
	document.images[imagename].src="/images/menu/"+imagename+"_b.png";
}


function insertMenu(idx,optional) {
	//document.write('<img src="/images/menu/empty.png"><img src="/images/menu/border.png">');

	document.write('<table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td style="border-top:1px solid #c0c0c0; border-bottom:1px solid #c0c0c0;"><div style="margin-left: 120px; margin-top: 0px; font:12px verdana,arial, helvetica; font-weight: bold; ">');
	if (!optional) {
		for (var i=0; i<topmenu.length; i++) {
			if (i==idx) {
				document.write('<img src="/images/menu/navigate.png"><b>'+topmenu[i]+'</b>');
			} else {
				document.write('<img src="/images/menu/navigate.png"><a href="'+urls[i]+'">'+topmenu[i]+'</a>');
			}
		}
	} else {
		document.write('<img src="/images/menu/navigate.png">'+optional);
	}
	document.write('&nbsp;</div></td></tr></table>');
}


function insertMenuText(idx) {

	for (var i=0; i<topmenu.length; i++) {
		if (i>0) document.write("&nbsp;|&nbsp;");
		document.write('<a class="copyright" href="'+urls[i]+'">'+topmenu[i]+'</a>');
	}
}

function menu_jump(path) {
    window.location.href = path.options[path.selectedIndex].value;
}
