function menuPress(area){
	
	var location=theMenu[area]['resource'];
	if(!isNothingNess(location)){
		window.location=location;
		
	}
}
/*
function makeOver(el){
	el.className="hover";
	var img=el.getElementsByTagName('img')[0];
	img.src=img.src.replace('.png','_hover.png');
}
function removeOver(el){
	el.className="";
	var img=el.getElementsByTagName('img')[0];
	img.src=img.src.replace('_hover.png','.png');
}*/
