// This will smooth scroll when clicking on Contact button in menu
$('a[href*=#]').click(function(event){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 1000);
event.preventDefault();
});