$(document).ready(function(){
    // pop external links in new window/tab
	$("a[href^='http']").attr('target','_blank');

    // set active nav item
    $('#navigation a[href="' + document.location.pathname + '"]').closest('#navigation > li').addClass('current');
});


