$(document).ready( function () {

	// Scroll to the specified target on load
	
	if(window.location.hash)
		$(window.location.hash).scrollTo(58,500);
	
	
	$('body #header a[href*=#]').click( function ( event ) {
		event.preventDefault();
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')  && location.hostname == this.hostname) {	
			var target = this.hash;
			$(target).scrollTo(40, 500);
		}
	});
	
});
