$(document).ready(function(){
	
	
	$('#follow').scrollFollow({offset: 0});
	
	// SCROLL TO
	$('a[href*=#]').smoothScroll({
		
		speed: 1500,
        afterScroll: function() {
        	/*if (this.hash == 'top') {
				location.hash = '';
			} else {
		  		location.hash = this.hash;
			}*/
		
        }
      });
	
	
});

