// scripts for index page navigation
floorplans_on = new Image();
floorplans_on.src = "images/floorplans_on.jpg";
floorplans_off = new Image();
floorplans_off.src = "images/floorplans_off.jpg";
floorplans_text_off = "OUR PADS";
floorplans_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";

directions_on = new Image();
directions_on.src = "images/directions_on.jpg";
directions_off = new Image();
directions_off.src = "images/directions_off.jpg";
directions_text_off = "OUR LOCATION";
directions_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>";
}
