$(document).ready(function() {
  
  // open links with class 'popup' in new windows
  $('a.popup').click(function() {
    window.open($(this).attr('href'));
    return false;
  });
    
  // Searchbox focus
  $('#topsearch').focus(function() {
    if ($(this).val() == 'Keywords')
      $(this).val('');
  });
  
  // Searchbox blur
  $('#topsearch').blur(function() {
    if ($(this).val() == '')
      $(this).val('Keywords');
  });
  
  // Active state for nav bar
  $('#navigation ul').find('a').each(function() {
    $(this).hover(function() {
      $(this).addClass('hover');
    }, function() { 
      $(this).removeClass('hover');
    });
  });  
});
