<!--

if (document.images){

homeoff = new Image();
homeoff.src = "images/home_off.gif";
homeon =  new Image();
homeon.src = "images/home_on.gif";

myCMEoff = new Image();
myCMEoff.src = "images/myCME_off.gif";
myCMEon =  new Image();
myCMEon.src = "images/myCME_on.gif";

whatsnewoff = new Image();
whatsnewoff.src = "images/whatsnew_off.gif";
whatsnewon =  new Image();
whatsnewon.src = "images/whatsnew_on.gif";

browseCMEsoff = new Image();
browseCMEsoff.src = "images/browseCMEs_off.gif";
browseCMEson =  new Image();
browseCMEson.src = "images/browseCMEs_on.gif";

authorbiosoff = new Image();
authorbiosoff.src = "images/authorbios_off.gif";
authorbioson =  new Image();
authorbioson.src = "images/authorbios_on.gif";

resourcesoff = new Image();
resourcesoff.src = "images/resources_off.gif";
resourceson =  new Image();
resourceson.src = "images/resources_on.gif";

aboutusoff = new Image();
aboutusoff.src = "images/aboutus_off.gif";
aboutuson =  new Image();
aboutuson.src = "images/aboutus_on.gif";

helpoff = new Image();
helpoff.src = "images/help_off.gif";
helpon =  new Image();
helpon.src = "images/help_on.gif";

}

function rollOn(imgName){
	if (document.images) {
		document[imgName].src = eval(imgName + 'on.src');
	}
}

function rollOff(imgName){
	if (document.images) {
		document[imgName].src = eval(imgName + 'off.src');
	}
}

function btnSubmit_Search()
{
 var srch = document.getElementById("searchThis").value;
 document.location.href = "search.aspx?searchword=" + srch ;
}
//--> 

