// scripts for index page navigation
fp_on = new Image();
fp_on.src = "images/live_on.jpg";
fp_off = new Image();
fp_off.src = "images/live_off.jpg";
fp_text_off = "OUR PADS";
fp_text_on = "Floor Plans and Rates";

amenities_on = new Image();
amenities_on.src = "images/resident_on.jpg";
amenities_off = new Image();
amenities_off.src = "images/resident_off.jpg";
amenities_text_off = "EXTRAS";
amenities_text_on = "Community Amenities";

residents_on = new Image();
residents_on.src = "images/residents_on.jpg";
residents_off = new Image();
residents_off.src = "images/residents_off.jpg";
residents_text_off = "FOR OUR RESIDENTS";
residents_text_on = "Resident Services";

photos_on = new Image();
photos_on.src = "images/photos_on.jpg";
photos_off = new Image();
photos_off.src = "images/photos_off.jpg";
photos_text_off = "PICS";
photos_text_on = "Photo Gallery";

location_on = new Image();
location_on.src = "images/location_on.jpg";
location_off = new Image();
location_off.src = "images/location_off.jpg";
location_text_off = "OUR LOCATION";
location_text_on = "Where We Are";


function rollOn(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 rollOff(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>";
}