var time = 200;

$(document).ready
(
	function()
	{
		//we ready
		//fading links like all the cool kids...
		//----------------------------------------------------------------------------
		$('a').mouseenter
		(
			function(){	$(this).animate({color:'#282828', borderColor: '#282828'}, time); }
		);
		
		$('a').mouseleave
		(
			function(){	$(this).animate({color:'#EFEFEF', borderColor: '#EFEFEF'}, time); }
		);
		
		$('#the_heart').mouseenter
		(	
			function(){ $(this).animate({color:'#CC0000'}, time); }
		);
		
		$('#the_heart').mouseleave
		(
			function(){ $(this).animate({color:'#EFEFEF'}, time); }
		);
		//----------------------------------------------------------------------------
		
	}
);
