$(document).ready(function(){
	//scroll to hash tag using jquery scrollto plugin
	$('#menu a, #logo-alcone a').click(function(){
		$.scrollTo(this.hash, 1000, { offset: { top: -150 }, easing: 'easeInOutExpo' }); 	//add offset to stop scroll under the fixed page header
		return false;
	});
	
});























