<!--
var preloadFlag = false;
function preloadImages() {
	if (document.images) {
	    //TOP NAV IMAGES
		var topnav_0_over = newImage("/images/navTop/topnav_TheLofts_over.gif");
		var topnav_1_over = newImage("/images/navTop/topnav_Neighborhood_over.gif");
		var topnav_2_over = newImage("/images/navTop/topNav_Galleries_over.gif");
		var topnav_3_over = newImage("/images/navTop/topnav_ContactUs_over.gif");
		var topnav_4_over = newImage("/images/navTop/topnav_ApplyOnline_over.gif");
	
		preloadFlag = true;
	}
}

function newImage(arg) {
	if (document.images) {
		var rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
	else
	{
	return null;
	}
}

function navSelect(theID) {
    var theSRC = document.getElementById(theID).src;
    var theIMG = theSRC.substring(theSRC.lastIndexOf('/') + 1, theSRC.lastIndexOf('.')); 
     
    //IF '_over' is in the theIMG, remove it. If it's NOT in the theIMG, add it!
    if(theIMG.indexOf('_over')>-1)
        theIMG = theSRC.replace(/_over/, "");
    else
        theIMG = theSRC.replace(theIMG, theIMG + "_over");
        
    if(document.getElementById(theID) && (preloadFlag == true))
      document.getElementById(theID).src = theIMG;
      //alert(theIMG);
}

function OpenFeatureWindow(theURL, theParams) { //v2.0
    window.open(theURL,'Features',theParams);
}
   
function clickIt(nodeName){
	if(nodeName.style.display == "none"){
		//alert("nodeName= STYLE IS NONE" + nodeName);
		nodeName.style.display = "";
		}
	else{
		//alert("nodeName= STYLE IS NOT NONE!! Set it to none" + nodeName);
		nodeName.style.display = "none";
	}		
} 

// -->

