// JavaScript Document

$(document).ready( function() {
	
	$('#nav a').each( function() {
		$(this).append('<span></span>');
	});

	Cufon.replace('#rightside h3.title, .post h4, em em strong');

	$('#foot a').hover(
		function() {	$(this).css({paddingTop:0, paddingBottom:3})	},
		function() {	$(this).stop(1,1).animate({paddingTop:3, paddingBottom:0}, 200)	}
	);

	$(document).pngFix(); 
	
});
