$(document).ready(function() {

	Cufon.replace('h1, h2, #nav li a, .post h2 a');
	
	// Add post_image div around all image in a post
	$(".entry img, p img").wrap("<div class='post_image'></div>");

	
	// Set Sidebar Height Equal to Main Content
	var height = $('#page-content').height();
	$('#sidebar').css('height', height);

});