	homeOn = new Image();
	homeOn.src = "templates/images/bt_home_on.gif";
	homeOff = new Image();
	homeOff.src = "templates/images/bt_home_off.gif";
	
	contactOn = new Image();
	contactOn.src = "templates/images/bt_contactus_on.gif";
	contactOff = new Image();
	contactOff.src = "templates/images/bt_contactus_off.gif";
	
	supportOn = new Image();
	supportOn.src = "templates/images/bt_support_on.gif";
	supportOff = new Image();
	supportOff.src = "templates/images/bt_support_off.gif";
	
	partnersOn = new Image();
	partnersOn.src = "templates/images/bt_partners_on.gif";
	partnersOff = new Image();
	partnersOff.src = "templates/images/bt_partners_off.gif";
	
	buynowOn = new Image();
	buynowOn.src = "templates/images/bt_buynow_on.gif";
	buynowOff = new Image();
	buynowOff.src = "templates/images/bt_buynow_off.gif";
	
	sitemapOn = new Image();
	sitemapOn.src = "templates/images/bt_sitemap_on.gif";
	sitemapOff = new Image();
	sitemapOff.src = "templates/images/bt_sitemap_off.gif";
	

function TurnOn(imageName) {
	if(document.images)
	{
		document[imageName].src = eval(imageName + "On.src");
	}
}

function TurnOff(imageName) {
	if(document.images)
	{
		document[imageName].src = eval(imageName + "Off.src");
	}
}