/**********************************************************************
	Project: Urban Recreation
	Version: 1.0
	Author: Hze
	Netgenetix Media
 *********************************************************************/




/**********************************************************************
	LINKS
 *********************************************************************/

function setExternalLinks() {
	if (!document.getElementsByTagName) return;
	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.getAttribute("rel") == "nofollow" ) ) {
			anchor.target = "_blank";
		}
	}
}




/**********************************************************************
	MAIN NAVIGATION
 *********************************************************************/

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}




/**********************************************************************
	MAIN NAVIGATION
 *********************************************************************/

function popContact(url) {
	return openCenteredWindow(url, 'urbanContact', 450, 480, 1, 1, 0, 'urbanOpener');
}


function popPrintout(url) {
	openCenteredWindow(url, 'urbanPrint', 450, 500, 1, 1, 'toolbar', 'urbanOpener')
}

