jQuery(function(){
	jQuery(".sidebar-box ul li a").hover(function(){
		jQuery(this).animate({
			marginLeft: "8px"
		}, 100);
	}, function(){
		jQuery(this).stop().animate({
			marginLeft: "0px"
		}, 100);
	});
	
	jQuery(".readmore a").hover(function(){
		jQuery(this).animate({
			marginRight: "8px"
		}, 100);
	}, function(){
		jQuery(this).stop().animate({
			marginRight: "0px"
		}, 100);
	});
	
	jQuery("#pages ul li").hover(function(){
		jQuery(this).animate({
			marginTop: "8px"
		}, 250);
	}, function(){
		jQuery(this).animate({
			marginTop: "0px"
		}, 250);
	});
});