$(document).ready(function()
{

	 jQuery('.scroller').click(function() 
        {
               var clicked = jQuery(this).attr("href");
               var destination = jQuery(clicked).offset().top;
               jQuery("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 500 );
               return false;
        });

});
