// JavaScript Document
// rollover function
function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}


for (var i=1;i<=5;i++){
preload('menu_'+i+'_off','http://www.bevia.com/shadow/extranet/extra_andrewcurry/images/menu_'+i+'_off.gif')
preload('menu_'+i+'_on','http://www.bevia.com/shadow/extranet/extra_andrewcurry/images/menu_'+i+'_on.gif')
}
function rollOver(imgName,imgObj) {
	document.images[imgName].src = eval(imgObj+".src");
}