<!--

var loaded = 0;

	aboutballetOn = new Image();
	aboutballetOn.src = "/images/buttons/top/aboutballet.on.gif";

	buyticketsOn = new Image();	
	buyticketsOn.src = "/images/buttons/top/buytickets.on.gif";

	careersOn = new Image();
	careersOn.src = "/images/buttons/top/careers.on.gif";
	
	contactusOn = new Image();
	contactusOn.src = "/images/buttons/top/contactus.on.gif";
	
	educationOn = new Image();
	educationOn.src = "/images/buttons/top/education.on.gif";
	
	forumOn = new Image();
	forumOn.src = "/images/buttons/top/forum.on.gif";

	linksOn = new Image();
	linksOn.src = "/images/buttons/top/links.on.gif";

	newsOn = new Image();
	newsOn.src = "/images/buttons/top/news.on.gif";

	registerOn = new Image();
	registerOn.src = "/images/buttons/top/register.on.gif";

	supportusOn = new Image();
	supportusOn.src = "/images/buttons/top/supportus.on.gif";

	thecompanyOn = new Image();
	thecompanyOn.src = "/images/buttons/top/thecompany.on.gif";

	visuallyimparedOn = new Image();
	visuallyimparedOn.src = "/images/buttons/top/visuallyimpared.on.gif";

	whatsonOn = new Image();
	whatsonOn.src = "/images/buttons/top/whatson.on.gif";

	//offs

	aboutballetOff = new Image();
	aboutballetOff.src = "/images/buttons/top/aboutballet.off.gif";

	buyticketsOff = new Image();	
	buyticketsOff.src = "/images/buttons/top/buytickets.off.gif";

	careersOff = new Image();
	careersOff.src = "/images/buttons/top/careers.off.gif";
	
	contactusOff = new Image();
	contactusOff.src = "/images/buttons/top/contactus.off.gif";
	
	educationOff = new Image();
	educationOff.src = "/images/buttons/top/education.off.gif";
	
	forumOff = new Image();
	forumOff.src = "/images/buttons/top/forum.off.gif";

	linksOff = new Image();
	linksOff.src = "/images/buttons/top/links.off.gif";

	newsOff = new Image();
	newsOff.src = "/images/buttons/top/news.off.gif";

	registerOff = new Image();
	registerOff.src = "/images/buttons/top/register.off.gif";

	supportusOff = new Image();
	supportusOff.src = "/images/buttons/top/supportus.off.gif";

	thecompanyOff = new Image();
	thecompanyOff.src = "/images/buttons/top/thecompany.off.gif";

	visuallyimparedOff = new Image();
	visuallyimparedOff.src = "/images/buttons/top/visuallyimpared.off.gif";

	whatsonOff = new Image();
	whatsonOff.src = "/images/buttons/top/whatson.off.gif";

loaded = 1;

function switchOn(imageName) 
{
	if(loaded == 1){
		imgOn = eval(imageName + "On.src");
		document [imageName].src = imgOn; 
	
	}
}

function switchOff(imageName) 
{
	if(loaded == 1){
		imgOff = eval(imageName + "Off.src");
		document [imageName].src = imgOff;
	}
}


-->