// This hides the left hand menu
			$(document).ready(function() {
				// Collapse everything but the first menu:
				$("#menu1 > li > a").not(".expand, #features_open").find("+ ul").slideUp(1);
				

				
				// Expand or collapse:
				$("#menu1 > li > a").click(function() {
					$(this).find("+ ul").slideToggle("fast");
				});
				
				
		


			
// paragraph on index page - hide
		$(".org_data").addClass("hide");
		$(".org_link").click(function(){
			$("div.org_data").slideToggle("slow").removeClass("hide"); });	
		
		
});
			
