$(function(){  
   $('a[href*=#]').click(function() {
     if ( $(this).hasClass("Scroll")) 
       var $target=$(this.hash);  
       var targetY=$target.offset().top;  
       $($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body').animate({scrollTop: targetY},500);return false;  
   });  
 }); 

