// JavaScript Document

jQuery.noConflict();

jQuery(document).ready(function(){
   jQuery(".question_li").click(function () {
      jQuery("p", this).toggle('slow');
    });

    jQuery(".question_li a").attr('style', "cursor:pointer;");
    jQuery(".question_li p").attr('style', "display:none;");
});

function tog_ans(id){
	jQuery('#' + id).toggle('slow');
}

