﻿jQuery(document).ready(function($) {

	jQuery('nav a,footer a.up').click(function(e){
										  
		// If a link has been clicked, scroll the page to the link's hash target:
		
		jQuery.scrollTo( this.hash || 0, 1500);
		e.preventDefault();
	});


});

