$(function() {  

   $('#accordion dd').hide();  

   $('#accordion dt a').click(function(){  

       $('#accordion dd').slideUp();  

       $(this).parent().next().slideDown();  

       return false;  

   });  

}); 

$(function(){  

     $("#toTop a").click(function(){  

     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  

     return false;  

     })  

}); 

$(function(){  

     $('a img').hover(function(){  

        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));  

          }, function(){  

             if (!$(this).hasClass('currentPage')) {  

             $(this).attr('src', $(this).attr('src').replace('_on', '_off'));  

        }  

   });  

}); 




 

