addLoadEvent(function() {

	var anchors = document.getElementsByTagName("a"); 

	for (var i=0; i<anchors.length; i++) { 

		var anchor = anchors[i]; 

		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {

			anchor.target = "_blank"; 

		}

	} 

})



addLoadEvent(function() {

	if (typeof sIFR == "function") {

		sIFR.replaceElement("h2", named({sFlashSrc:"../flash/footlight.swf", sColor:"#1C1713", sWmode:"transparent"}));

	};

})



/**** NAV MENU DROPDOWNS ***/

addLoadEvent(function() {

	var navLIs = document.getElementById("navWrap").getElementsByTagName("LI");

	for (var i=0; i<navLIs.length; i++) {

		navLIs[i].onmouseover = function() {

			this.className += " active";

		}

		navLIs[i].onmouseout = function() {

			this.className = this.className.replace(/active/g,"");

		}

	}

})

