// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(".answer_box").hide()
jQuery(".checkbox_container span").hide();
})
function showAnswer(id){
		
        jQuery("#answer_box_"+id).toggle();
		
}	



