<!--
//<![CDATA[
var disableSend = false;

$(document).ready(function() {
	

	
	//SEARCH BOX
	$("#txtSearch").focus( function() { $(this).val(""); });
	

	
	// SITEMAP				   
	$("#sitemap_control").click(function() {
			
			if($("#sitemap").is(":hidden")) {
				
				// Get sitemap data
				$.ajax({
				  url: "/ajax/sitemap.asp",
				  cache: false,
				  success: function(html){
					
						$("#sitemap").html(html).show('slow');
						
						$("#sitemap_control a").addClass("on");
						$("#sitemap_control").find("span").html("Close Sitemap");  
						
					  }
				  });
				
			}
			else {
				
				// Hide Sitemap
				$("#sitemap").hide('slow');
				
				$("#sitemap_control a").removeClass("on");
				$("#sitemap_control").find("span").html("Open Sitemap");
			}			
			
			return false;
	});
	
	
						   
});

//]]>
-->	
