﻿$(document).ready(function(){
    //Selector con los a que tenga atributo href empiece con #
    $("a[href^='#']").click(function(event){
        event.preventDefault();
        $.scrollTo( this.hash, 1500);
    });
});
