jQuery(function(){
     jQuery('a img').hover(function(){
        jQuery(this).attr('src', jQuery(this).attr('src').replace('_off', '_on'));
          }, function(){
             if (!jQuery(this).hasClass('currentPage')) {
             jQuery(this).attr('src', jQuery(this).attr('src').replace('_on', '_off'));
        }
   });
});

jQuery(function(){
     jQuery(".return a").click(function(){
     jQuery('html,body').animate({ scrollTop: jQuery(jQuery(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});
jQuery(function(){
     jQuery(".biggerlink").click(function(){
         window.location=jQuery(this).find("a").attr("href");
         return false;
    });
});
jQuery(function() {
   jQuery('#accordion dd').hide();
   jQuery('#accordion dt a').click(function(){
       jQuery('#accordion dd').slideUp();
       jQuery(this).parent().next().slideDown();
       return false;
   });
});

