// JavaScript Document to run localScroll

jQuery(document).ready(function($)
{
	/* 
		available easing options: http://gsgd.co.uk/sandbox/jquery/easing/
	*/
	
	$('#globalNav').localScroll({
		duration:2000,
		easing:'easeOutBounce'
		//easing:'easeOutElastic'
	});
	
	//$.log('local scroll init loaded');
});

