//Open popups in a new window
$('a.popup').click(function() {
  window.open( $(this).attr('href') );
  return false;
});

//When the DOM is ready...
$(document).ready(function(){
  //Hide the legal part of the footer from the main menu
  $('#menu ul#legal').hide();
  
  //Add a link to the homepage to the footer UL
  $('#footerinner').find('UL:first').append('<li id="home"><a href="/">Home</a></li>');
  
  if ($.browser.msie) {
  	$('.menu:first li').hover( function() {
      $(this).addClass('sfhover');
    }, function() {
      $(this).removeClass('sfhover');
    });
  } 
  
});