$(document).ready(function() {

  //Prevent linking action on Press in nav
  $('#navaPress').click(function(event){
 		event.preventDefault();
 });
 
  
  //External links open in a new window
  $('a[href^="http://"]').each(function() {
            $(this).attr('target','_blank');
  });


});
