$(document).ready(function() {
	

	//Print current page
	$("#print").click(function() { window.print();} );	

	//Zebra striping
	$("tr:nth-child(odd)").addClass("odd");	

	//Equalize column heights if right side column is shorter than left hand side
	var leftHeight = 0;
	var rightHeight = 0;
	
	leftHeight = $("#leftNav").height();
	rightHeight = $("#content").height();
	
	if (leftHeight > rightHeight) {
		$("#content").height(leftHeight+1);
	}

});

//Cufon text replacement
Cufon.replace('h1', { fontFamily: 'Helvetica' });