	$(document).ready(function(){
	
////Eagle Font////
		Cufon.now();
		
	      Cufon.replace('code' , { fontFamily: 'eaglebook', hover: true });
		  
		  Cufon.replace('.sub' , { fontFamily: 'eaglelight', hover: true });
		  Cufon.replace('#menu' , { fontFamily: 'eaglelight', hover: true });
		  Cufon.replace('.navigation' , { fontFamily: 'eaglelight', hover: true });
		  Cufon.replace('#related-posts h3' , { fontFamily: 'eaglelight', hover: true });
		  Cufon.replace('.previousnext' , { fontFamily: 'eaglelight', hover: true });
    
});


////Post Anim////	
$(".post").find("h2 > span").hide(); 

$(".post").hover(function(){
    $(this).find("h2 > a").css('color','#333333');
	$(this).find("h2 > span").css('display','inline');
}, function(){
	$(this).find("h2 > a").css('color','#2593C1');
	$(this).find("span > a").css('display','none');
    });
