<!--
       home_off = new Image;
       home_off.src = "/images/home.jpg";
       home_on = new Image;
       home_on.src = "/images/home_on.jpg";
       about_off = new Image;
       about_off.src = "/images/about.jpg";
       about_on = new Image;
       about_on.src = "/images/about_on.jpg";
       services_off = new Image;
       services_off.src = "/images/services.jpg";
       services_on = new Image;
       services_on.src = "/images/services_on.jpg";
       listings_off = new Image;
       listings_off.src = "/images/listings.jpg";
       listings_on = new Image;
       listings_on.src = "/images/listings_on.jpg";
       transactions_off = new Image;
       transactions_off.src = "/images/transactions.jpg";
       transactions_on = new Image;
       transactions_on.src = "/images/transactions_on.jpg";
       references_off = new Image;
       references_off.src = "/images/references.jpg";
       references_on = new Image;
       references_on.src = "/images/references_on.jpg";
       contact_off = new Image;
       contact_off.src = "/images/contact.jpg";
       contact_on = new Image;
       contact_on.src = "/images/contact_on.jpg";
       back_to_top_off = new Image;
       back_to_top_off.src = "/images/back_to_top.jpg";
       back_to_top_on = new Image;
       back_to_top_on.src = "/images/back_to_top_on.jpg";
       newsletter_off = new Image;
       newsletter_off.src = "/images/newsletter.jpg";
       newsletter_on = new Image;
       newsletter_on.src = "/images/newsletter_on.jpg";
       analytics_off = new Image;
       analytics_off.src = "/images/analytics.jpg";
       analytics_on = new Image;
       analytics_on.src = "/images/analytics_on.jpg";

function hiliteon(imgDocID,imgObjName) {
	document.images[imgDocID].src = eval(imgObjName + "_on.src");
}

function hiliteoff(imgDocID,imgObjName) {
	if (imgDocID == "client_login" || imgDocID == "webmail_login") {
		if (document.getElementById(imgDocID + "_div").style.display == 'none') {
			document.images[imgDocID].src = eval(imgObjName + "_off.src");
			self.status='';
		}
	} else {
		document.images[imgDocID].src = eval(imgObjName + "_off.src");
		self.status='';
	}
}
//-->