/* Fading Hover with jQuery by I Love Copy And Paste
 * http://ilovecopyandpaste.com
 *
 * Copyright (c) 2009 I Love Copy And Paste
 * ALL RIGHTS RESERVED!
 *
 * Last Revision September 17 (1)
 */
$(document).ready(function()
{	

	$('.body a, .action a').hover(
	function (){
		$(this).animate({backgroundColor: '#cdeeff'}, 650);
	},
	function () {
 		$(this).animate({backgroundColor: '#fff'}, 650);
	});

	$('.permalink a, #footer a').hover(
	function(){
		$(this).animate({color: '#999999'}, 650);
	},
	function (){
 		$(this).animate({color: '#cccccc'}, 650);
	});
	
	$('#description a').hover(
	function(){
		$(this).animate({color: '#4c4c4c'}, 650);
	},
	function (){
 		$(this).animate({color: '#999999'}, 650);
	});
	
});
