jQuery(document).ready(function() {
	jQuery(".more-link").hover(function() {
		jQuery(this).animate({"marginLeft": "7px"}, 250);
	}, function() {
		jQuery(this).animate({"marginLeft": "0px"}, 250)	;
	});

	jQuery(".navigation .alignright").hover(function() {
		jQuery(this).animate({"marginRight": "5px"}, 250);
	}, function() {
		jQuery(this).animate({"marginRight": "10px"}, 250)	;
	});		
	jQuery(".navigation .alignleft").hover(function() {
		jQuery(this).animate({"marginLeft": "5px"}, 250);
	}, function() {
		jQuery(this).animate({"marginLeft": "10px"}, 250)	;
	});	
	jQuery(".indexposts, .posts").hover(
		function() {
			jQuery(".highlight",this).css('cursor','pointer').animate({backgroundColor:"#FFF0C6"},"fast")
			jQuery(".highlight",this).click(
			function() {
	        	window.location = jQuery('h1 a', this).attr('href');
			});
		},
		function() {
			jQuery(".highlight",this).animate({backgroundColor:"#fff5e0"},"fast");
		}
	);
	
	jQuery('.backtotop').click(function(){
		jQuery('html, body').animate({scrollTop:0}, 'slow');
	});	
});