$(document).ready(function() {
	$('.post-content p a.link').hover(
		function(){$(this).stop().animate({'color':'#fff','backgroundColor':'#38B6FA'},300);},
		function(){$(this).stop().animate({'color':'#333','backgroundColor':'#fff'},300);}
	);
	
	$('.post-content p a.gallery-thumb').hover(
		function(){$(this).stop().animate({'color':'#fff','backgroundColor':'#fff'},300);},
		function(){$(this).stop().animate({'color':'#fff','backgroundColor':'#fff'},300);}
	);
});
