$(document).ready(function() {

	//Zebra striping
	$("tr:nth-child(odd)").addClass("odd");	
	
	//Auto clear text fields
	$('.clearField').clearField();

	//Show/Hide Sitemap
	$("#sitemapFunction").click(function() {
		if($("#index").is(":hidden")) {
			$("#index").slideDown("slow", function() {
				$("#sitemapFunction").html('<img src="/gfx/closeSitemap.gif" alt="Close" />');
			});	
		}
		else{
			$("#index").slideUp("slow", function() {
				$("#sitemapFunction").html('<img src="/gfx/openSitemap.gif" alt="Open" />');
			});				
		}
	});

});

