<!--
// MirandaNet JavaScript

if (document.images) {
	logoon = new Image();
	logoon.src = "/images/logo-hl.gif";
	logooff = new Image();
	logooff.src = "/images/logo.gif";
	bulleton = new Image();
	bulleton.src = "/images/bullet-home.gif";
	bullethomeon = new Image();
	bullethomeon.src = "/images/bullet-home.gif";
	bulletwhoon = new Image();
	bulletwhoon.src = "/images/bullet-who.gif";
	bulletindon = new Image();
	bulletindon.src = "/images/bullet-industry.gif";
	bulletinton = new Image();
	bulletinton.src = "/images/bullet-internat.gif";
	bulletnewon = new Image();
	bulletnewon.src = "/images/bullet-new.gif";
	bulletreson = new Image();
	bulletreson.src = "/images/bullet-resources.gif";
	bulletpubon = new Image();
	bulletpubon.src = "/images/bullet-publications.gif";
	bulletforon = new Image();
	bulletforon.src = "/images/bullet-forums.gif";
	bulletproon = new Image();
	bulletproon.src = "/images/bullet-profdevel.gif";
	bulletmemon = new Image();
	bulletmemon.src = "/images/bullet-members.gif";
	bulletconsulton = new Image();
	bulletconsulton.src = "/images/bullet-consult.gif";
	bulletoff = new Image();
	bulletoff.src = "/images/bullet.gif";
	
}

function turnOn(imageName,locationName) {
	if (document.images && window.RegExp) {
		newImageName = imageName.replace(/[0-9]+$/,"");
		if (locationName == null) {
			locationName = "";
		}
		document[imageName].src = eval(newImageName + locationName + 'on.src');
	}
}

function turnOff(imageName) {
	if (document.images && window.RegExp) {
		newImageName = imageName.replace(/[0-9]+$/,"");
		document[imageName].src = eval(newImageName + 'off.src');
	}
}

//-->

