$(document).ready(function(){
	$.localScroll( { hash: true } );
	
	$("#nav-global").lavaLamp({
		fx: "easeOutBack", 
		speed: 900,
		click: function(event, menuItem) {
			// return false;
		}
	});
	
	$(".comment.author").append('<span class="author-marker"/>');
	
	$(".more a").hover(
		function(){
				$(this).stop().animate( { backgroundColor: '#4677bf', color: '#ffffff' }, 300 );
			},
		function(){
				$(this).stop().animate( { backgroundColor: '#f9f9f9', color: '#4677bf' }, 300 );	
			}
		);
});