$(document).ready(function(){
	$("ol li").click(function(){
	var x = $("#d"+this.id);	
 	if ( $("#d"+this.id).css("display") == "none" )
		$("#d"+this.id).show();
	else
		$("#d"+this.id).hide();
   
    
 }); 
});
