$('document').ready(function(){

	
	// drop down menu
   	$('ul.children').addClass('hide')
				.parent().children("a")
				.removeAttr('href', '')
				.addClass('bold')  
					.click(function(){
		     			$(this).next('ul').slideToggle('fast').addClass('show');                                 
					});
	
	// toggle info
	//TODO
	$('body.single .info').hide();
	
	//find the anchor links
			
  	
	
});