// JavaScript Document

$(document).ready(function() {
						   
 $('.answer').hide(); 
 
 $('a#show_answers').click(function() {
 		$('.answer').show(); 
 });

 
});
