$(document).ready(
  function()
  {
    $('#questions li .hide').click(
      function(){
        $('#questions li div.current').removeClass('current');
        $(this).parent().children('div.hidden:hidden').show('fast').addClass('current');
        $('#questions li div.hidden:visible:not(.current)').hide('fast');
        return false;
      }
    );
		$('#p_questions li .hide').click(
      function(){
        $('#p_questions li div.current').removeClass('current');
        $(this).parent().children('div.hidden:hidden').show('fast').addClass('current');
        $('#p_questions li div.hidden:visible:not(.current)').hide('fast');
        return false;
      }
    );
		
  }
);