jQuery(document).ready( function() {
								 
		
	if(jQuery('#child')) jQuery('#child').hide();
								 
								 
	jQuery("#expand").click(function(){
		
				jQuery(this).next().slideToggle("slow");
				
				
	});
	
	jQuery("#expand").toggle(function (){
	jQuery(this).text("-")
	
	   .stop();
	}, function(){
	jQuery(this).text("+")
	
	.stop();
	});
	



	
	

	
});
