// JavaScript Document
for(i=0;i<=8;i++)
{
	eval("top"+i+"On= new Image()");
	eval("top"+i+"On.src= '/images/topnav" + i + "_on.gif'");
	eval("top"+i+"Off= new Image()");
	eval("top"+i+"Off.src= '/images/topnav" + i + ".gif'");
}

function rollMe(num,state)
{
	eval("document.images['top" + num + "'].src = top" + num + state + ".src");
}