<!--  

if (document.images) {	

	corpprofileon = new Image(123,25);
	corpprofileon.src = "../images/HNR_corpprofile.gif"
	corpprofileoff = new Image(123,25);
	corpprofileoff.src = "../images/HN_corpprofile.gif"
	
	clinicalon = new Image(148,25);
	clinicalon.src = "../images/HNR_clinical.gif"
	clinicaloff = new Image(148,25);
	clinicaloff.src = "../images/HN_clinical.gif"
	
	productson = new Image(74,25);
	productson.src = "../images/HNR_products.gif"
	productsoff = new Image(74,25);
	productsoff.src = "../images/HN_products.gif"
	
	ourteamon = new Image(80,25);
	ourteamon.src = "../images/HNR_ourteam.gif"
	ourteamoff = new Image(80,25);
	ourteamoff.src = "../images/HN_ourteam.gif"
	
	iron = new Image(56,25);
	iron.src = "../images/HNR_ir.gif"
	iroff = new Image(56,25);
	iroff.src = "../images/HN_ir.gif"
	
	careerson = new Image(67,25);
	careerson.src = "../images/HNR_careers.gif"
	careersoff = new Image(67,25);
	careersoff.src = "../images/HN_careers.gif"
	
	contacton = new Image(71,25);
	contacton.src = "../images/HNR_contact.gif"
	contactoff = new Image(71,25);
	contactoff.src = "../images/HN_contact.gif"
	
	homeon = new Image(56,25);
	homeon.src = "../images/HNR_home.gif"
	homeoff = new Image(56,25);
	homeoff.src = "../images/HN_home.gif"
 }

function On(imgName) {
      if (document.images) 
          document.images[imgName].src = eval(imgName + "on.src");
}

function Off(imgName) {
      if (document.images)
             document.images[imgName].src = eval(imgName + "off.src");
} 


defaultStatus = '';

function focusFirst()
{
	if ((document.forms.length > 0) &&
		(document.forms[0].elements.length > 0))
		document.forms[0].elements[0].focus();
}

window.onload=focusFirst;


// -->