function BlurLinks(){
	lnks=document.getElementsByTagName('a');
	for(i=0;i<lnks.length;i++){
	lnks[i].onfocus=new Function("if(this.blur)this.blur()");
	}
}

jQuery(function( $ ){
	$.localScroll.hash({
		target: 'body', 
		queue:true,
		duration:500
	});

	$.localScroll({
		target: 'body', 
		queue:true,
		duration:500,
		hash:true,
		onBefore:function( e, anchor, $target ){
		},
		onAfter:function( anchor, settings ){
		}
	});
});
