	// Sidebar links animation
	$(document).ready(function(){
		$(".half a").hover(function(){
			$(this).find('span').stop().animate({marginLeft:'10px'},{queue:false, duration:300, easing: 'easeOutBounce'})
		},function(){
			$(this).find('span').stop().animate({marginLeft:'0px'},{queue:false, duration:300, easing: 'easeOutBounce'})
		});
	 
	});

