$(document).ready(function() {

	//Print current page
	$(".print").click(function() { window.print(); return false;} );	

	//Zebra striping
	$("tr:nth-child(odd)").addClass("odd");	
	
	//Hide the sitemap
	$("#sitemap").hide();
	
	//On click show the sitemap
	$("#sitemapButton").toggle(function() {
		$("#sitemapButton").css("background-position","bottom");
		$("#sitemap").slideDown(500);
	},function() {
		$("#sitemapButton").css("background-position","top");
		$("#sitemap").slideUp(500);
	});

});

//Cufon text replacement
Cufon.replace('h1', { fontFamily: 'Myriad' });
