 $(document).ready(function()
 { 
	 $('#menulist a').click(function(e)
	 {		
                    e.preventDefault();
                    var str_theId = '#' + $(this).attr('href').split('#')[1];
                    $('html,body').animate({scrollTop: $(str_theId).offset().top - 36}, 400*1.5,'easeOutExpo');
                    window.location.hash = str_theId;
                    return false;
      });
	 
 });


 
