// Sets all anchor links to scroll the page

jQuery(function( $ ){
	$.localScroll();
});


// Sets the navigation bar (enclosed in #example) to scroll to remain at the top of the page

$( document ).ready( function ()
{
	$( '#example' ).scrollFollow({speed: 0});
	}
);

