window.addEvent('load', function(){

	// document.id('nav').getElement('a')
	
	var pName = window.location.pathname || document.location.pathname,
		aLink = document.id('nav').getElement('li[class=' + pName.replace('/', '') + ']');
	
	if (aLink) aLink.addClass('active');

	// console.log(pName.replace('/', ''));
	
	$$('a[href$=.pdf], a[href^=http://]').set('target', '_new');

});


