
var base= "images/"
var nrm = new Array();
var omo = new Array();
var ocl = new Array();
var stuff = new Array('jatekosok','galeria','helyszin','kapcsolat','sajtoszoba','fooldal','archiv','hirek','program');
var name2 = "";
var temp = 0;

function over(no)
{
	if (document.images && select != no)
	{
		document.getElementById(stuff[no]).style.backgroundImage = "url(images/menu_ov.gif)";
		//document.images[stuff[no]].src = omo[no].src
	}
}

function out(no)
{
	if (document.images && select != no)
	{
		document.getElementById(stuff[no]).style.backgroundImage = "url(images/menu_off.gif)";
		//document.images[stuff[no]].src = nrm[no].src
	}
}

function clic(no)
{
	if (document.images)
	{
	    //document.getElementById(stuff[no]).style.backgroundImage='url("+ocl[no]+")'
		document.getElementById(stuff[no]).style.backgroundImage = "url(images/menu_on.gif)";
		//document.images[stuff[no]].src = ocl[no].src
		temp = select;
		select = no;
		if (temp != -1) {out(temp)}
	}
}
