jQuery(document).ready(function() {
   // generate markup
   jQuery('.questions').click(function(e){
   	 	e.preventDefault();
   	 	current_ID = this.id;
   	 	the_id = current_ID.substr(current_ID.indexOf('-')+1);
   	 	jQuery('#answer-'+the_id).toggle("normal");
   });
});
