// scripts for index page navigation
livewithus_on = new Image();
livewithus_on.src = "images/live_on.jpg";
livewithus_off = new Image();
livewithus_off.src = "images/live_off.jpg";
livewithus_text_off = "LIVE WITH US";
livewithus_text_on = "Prospective Resident Info";

residents_on = new Image();
residents_on.src = "images/resident_on.jpg";
residents_off = new Image();
residents_off.src = "images/resident_off.jpg";
residents_text_off = "RELY ON US";
residents_text_on = "Current Resident Info";

search_on = new Image();
search_on.src = "images/search_on.jpg";
search_off = new Image();
search_off.src = "images/search_off.jpg";
search_text_off = "SEARCH US";
search_text_on = "Advanced Search";

about_on = new Image();
about_on.src = "images/about_on.jpg";
about_off = new Image();
about_off.src = "images/about_off.jpg";
about_text_off = "ABOUT US";
about_text_on = "Why We Care";

contact_on = new Image();
contact_on.src = "images/contact_on.jpg";
contact_off = new Image();
contact_off.src = "images/contact_off.jpg";
contact_text_off = "CONTACT US";
contact_text_on = "Give Us a Call";

function navItemOn(which) {
	imgObj = document.getElementById(which);
	imgObj.src = "images/" + which + "_on.jpg";
	var txt = "link-" + which;
	textObj = document.getElementById(txt);
	textObj.innerHTML = "<a href=\'" + which + ".cfm\' class=\'homenav_on\'>" + eval(which + "_text_on") + "</a>";
}
function navItemOff(which) {
	imgObj = document.getElementById(which);
	imgObj.src = "images/" + which + "_off.jpg";
	var txt = "link-" + which;
	textObj = document.getElementById(txt);
	textObj.innerHTML = "<a href=\'" + which + ".cfm\' class=\'homenav_off\'>" + eval(which + "_text_off") + "</a>";
}