<!--
var preloadFlag = false;
function preloadImages() {
	if (document.images) {
	    //TOP NAV IMAGES
		var topnav_0_over = newImage("/images/nav/topnav_ourcompany_over.jpg");
		var topnav_1_over = newImage("/images/nav/topnav_projects_over.jpg");
		var topnav_2_over = newImage("/images/nav/topnav_news_over.jpg");
		var topnav_3_over = newImage("/images/nav/topnav_presscenter_over.jpg");
		var topnav_4_over = newImage("/images/nav/topnav_contact_over.jpg");
		var homePanel_1_over = newImage("/images/home_panel1_over.jpg");
		var homePanel_2_over = newImage("/images/home_panel2_over.jpg");
		var homePanel_3_over = newImage("/images/home_panel3_over.jpg");
		
		var moreArticles_over = newImage("/images/btn_moreArticles_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;
}

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";
	}		
}						  

// -->

