$(document).ready(function() {

	Cufon.replace('.menu li a, h2, li.widget h3', {
		hover: true		
	});
	
	// Animate out the grey bar on catlist links.
	$('.catlist li a').mouseenter(function() {
		$(this).animate({
			backgroundPosition: '240px 0'
		}, { duration: 400, queue: false });
	});
	
	$('.catlist li a').mouseleave(function() {
		$(this).animate({
			backgroundPosition: '0px 0'
		}, { duration: 400, queue: false });
	});
	
	
	// Hide post titles on latest posts by default, then display on mouseenter
	$('.squarethumbs p a').hide();
	
	$('.squarethumbs li').mouseenter(function() {
		$('a', this).show();
	});
	$('.squarethumbs li').mouseleave(function() {
		$('p a', this).hide();
	});
	
});
