$(document).ready(function() { 
  $("a.animate").css( {backgroundPosition: "-377px 0"} )
  $("a")
     .click(function() {
        ahref = this.href;
        $("#content").fadeOut("slow", function(){open(ahref, '_self');});
        event.preventDefault();
        })
});

