jQuery(function( $ ){
	/**
	 * Demo binding and preparation, no need to read this part
	 */
		
	//TOC, shows how to scroll the whole window
	$('#GlossaryTerms a').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 1500, { easing:'easeInOutExpo' });
		return false;
	});
		$('a.backUp').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
		$.scrollTo( this.hash, 500, { easing:'easeOutSine' });
		return false;
	});
});

