$(document).ready(function()
{$('#question-list').hide();$('.top').hide();$('.question').each(function()
{$(this).addClass('show_as_link');$(this).removeClass('to_heading');$(this).parent().next().hide();$(this).click(target.showanswer);});target.showlink();});var target={showlink:function()
{var location=window.location.href;var mytarget=location.slice(location.indexOf('#')+1);if(mytarget==location)
{return;}
$('#'+mytarget).trigger('click');},showanswer:function()
{var answer=$(this).parent().next();if(answer.is(':visible'))
{answer.slideUp();}
else
{answer.slideDown();}}}