var numSections = 7

var menuImages = new Array()
var menuImagesRoll = new Array()

for (n=1; n<=numSections; n++)
{
	menuImages[n] = new Image();
	menuImagesRoll[n] = new Image();	
	
	menuImages[n].src = "graphics/tabs/" + n + ".gif"
	menuImagesRoll[n].src = "graphics/tabs/" + n + "roll.gif"
}

function rollover(n)
{
	if (n!=currentSection) document.getElementById("mb"+n).src = menuImagesRoll[n].src
}

function rollout(n)
{
	if (n!=currentSection) document.getElementById("mb"+n).src = menuImages[n].src
}
