// JS
function init_nav(){
	// sweetness of sweet
	$$('a').each(function(link) {
		if( /^(http)/i.match(link.getAttribute('href')) && !link.hasClassName('noExternal') )
			link.observe('click', function(e){window.open(this.getAttribute("href"));e.stop()} )

	})
}




//document.observe('dom:loaded', init_nav)