﻿$(document).ready(function(){
	
	Cufon.replace("h1", { fontFamily: "Gentium Book Basic", hover: true } )
	Cufon.replace("h2, #page #sidebar ul li a", { fontFamily: "Gentium Basic", hover: true } )
	Cufon.now();
	
	
	//$("#left_content, #right_content").equalHeight();	
});	

(function($){
	$.fn.equalHeight = function(){
		var tallest = 0;
		
		this.each(function() {
			var thisHeight = $(this).height();
			if(thisHeight > tallest) {
				tallest = thisHeight;
			}
		});
		
		this.height(tallest);	
	};
})(jQuery);




