jQuery(document).ready(function($) {
  $('#noscript_css').attr('disabled', true);

  $('#main_links a').each(function(){
    var span = '<span class="hover"></span>';
    $(this).append(span).find('.hover').hide().html($(this).html());
  });

  $("#main_links a").hover(
    function () {
      $(this).find('.hover').fadeIn();
    },

    function () {
      $(this).find('.hover').fadeOut();
    }
  );

});
