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("h1", named({sFlashSrc:"http://www.campbellandjames.com/flash/copperplate.swf", sColor:"#1e3769", sWmode:"transparent"}));
		sIFR.replaceElement("#imageWrap p", named({sFlashSrc:"http://www.campbellandjames.com/flash/caslonPro.swf", sColor:"#333333", sWmode:"transparent"}));
		sIFR.replaceElement("h2", named({sFlashSrc:"http://www.campbellandjames.com/flash/copperplate.swf", sColor:"#1e3769", sWmode:"transparent"}));
		sIFR.replaceElement("h5", named({sFlashSrc:"http://www.campbellandjames.com/flash/copperplate.swf", sColor:"#333333", 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,"");
		}
	}
})
