<!-- Beginning of JavaScript Applet ------
IMG01on = new Image(175,28);
IMG01on.src = "/img/button_services_over.gif";
IMG01off = new Image(175,28);
IMG01off.src = "/img/button_services.gif";

IMG02on = new Image(175,28);
IMG02on.src = "/img/button_our_people_over.gif";
IMG02off = new Image(175,28);
IMG02off.src = "/img/button_our_people.gif";

IMG03on = new Image(175,28);
IMG03on.src = "/img/button_accounts_over.gif";
IMG03off = new Image(175,28);
IMG03off.src = "/img/button_accounts.gif";

IMG04on = new Image(175,28);
IMG04on.src = "/img/button_contact_us_over.gif";
IMG04off = new Image(175,28);
IMG04off.src = "/img/button_contact_us.gif";

IMG05on = new Image(175,28);
IMG05on.src = "/img/button_news_over.gif";
IMG05off = new Image(175,28);
IMG05off.src = "/img/button_news.gif";

IMG06on = new Image(175,40);
IMG06on.src = "/img/button_realtor_over.gif";
IMG06off = new Image(175,40);
IMG06off.src = "/img/button_realtor.gif";

function onchg(imgname) {
        document[imgname].src = eval(imgname + "on.src");
}

function offchg(imgname) {
        document[imgname].src = eval(imgname + "off.src");
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}


//-->
