$(function(){  
    $("a[href*=#]").anchorscroll() //this is basic setup
    /*
    You can pass in these three parameters
    $("a[href*=#]").anchorscroll({
        speed: 1500, // duration 
        easing: 'swing', // you can set easing for animation, you can choose from this http://jqueryui.com/demos/effect/#easing
        before: 10 // this defines space between element and animation stoping position
    })  
     */
})
