<!--  

if (document.images) {	
	
	homeon = new Image(76,24);
	homeon.src = "images/tnav_home_on.gif"
	homeoff = new Image(76,24);
	homeoff.src = "images/tnav_home_off.gif"

	messageon = new Image(140,24);
	messageon.src = "images/tnav_message_on.gif"
	messageoff = new Image(140,24);
	messageoff.src = "images/tnav_message_off.gif"

	abouton = new Image(93,24);
	abouton.src = "images/tnav_about_on.gif"
	aboutoff = new Image(93,24);
	aboutoff.src = "images/tnav_about_off.gif"

	serviceson = new Image(116,24);
	serviceson.src = "images/tnav_services_on.gif"
	servicesoff = new Image(116,24);
	servicesoff.src = "images/tnav_services_off.gif"
	
	testimonialson = new Image(112,24);
	testimonialson.src = "images/tnav_testimonials_on.gif"
	testimonialsoff = new Image(112,24);
	testimonialsoff.src = "images/tnav_testimonials_off.gif"
	
	contacton = new Image(108,24);
	contacton.src = "images/tnav_contact_on.gif"
	contactoff = new Image(108,24);
	contactoff.src = "images/tnav_contact_off.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;


// -->
