/* Javascript for Rollenspiel-Zitate.de*/
/* (c) 2002 by Tom Gudella                      */

if ( top.frames.length>0
  && location.href.indexOf("gudella.de")<0
  && location.href.indexOf("localhost")<0
  && location.href.indexOf("falcon")<0 )
	top.location.href=self.location;

var menuDownImg = new Array(5);
var menuHighImg = new Array(5);
for (var i=1; i<=5; i++)
{
	menuDownImg[i] = new Image();
	menuDownImg[i].src	= "images/m"+i+"a.gif";
	menuHighImg[i] = new Image();
	menuHighImg[i].src	= "images/m"+i+"b.gif";
}

function highlight (m)
{
	document.images["menu"+m].src = menuHighImg[m].src;
}

function downlight (m)
{
	document.images["menu"+m].src = menuDownImg[m].src;
}
	

