$(document).ready(function(){

	$("h2.drawer-handle:not(.current)").next().hide(); //hides children ULs of drawer-handles except current page

	$("h2.drawer-handle a").click(function(){  //do the following when drawer is clicked
		
		$("h2.drawer-handle").next().slideUp("fast"); //closes all drawers 
		
		$(this).parent().next('ul:hidden').slideToggle("fast"); //opens child of clicked H2.
		
		$("ul#news_feed").fadeOut();

 		
		//$("h2").removeClass("selected"); //removes all 'on' drawers
		//$(this).parent().addClass("selected"); //turns 'on' current drawer	

		return false; //prevents default hyperlink behaviour	
	
	});
});