jQuery(function(){
     jQuery('a img').hover(function(){
        jQuery(this).attr('src', jQuery(this).attr('src').replace('_off', '_on'));
          }, function(){
             if (!jQuery(this).hasClass('current')) {
             jQuery(this).attr('src', jQuery(this).attr('src').replace('_on', '_off'));
        }
   });
});

jQuery(function(){
     jQuery("#toTop a").click(function(){
     jQuery('html,body').animate({ scrollTop: jQuery(jQuery(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});

jQuery(function(){
     jQuery("tr:odd").addClass("odd");
});

