// JavaScript DocumentjQuery(document).ready(function(){/*$(function(){*///catch all clicks on a tagsjQuery("a").click(function() {	//check to see if it has hash	if(this.hash) {		//get rid of # sign		var hash = this.hash.substr(1);				//get position of the <a name>		var jQuerytoElement = jQuery("a[name="+hash+"]");		var toPosition = jQuerytoElement.position().top;				//scroll/animate to that element		jQuery("body,html").animate({			scrollTop : toPosition		},2000, "easeOutExpo");				//dont do the jump		return false;		} });});
