// JavaScript Document
var Text = {
  _q_num: 1,
  _q_total: 3,
  _q_step: '',

  init: function() {
    $('#inputzone').hide();
    $('#question_zone').show();  
    $('#container').removeClass('imagestep1').addClass('imagestep0');    
    $('#question_zone #answers #ans1').click(function(e) {e.preventDefault(); Text.next(1);});
    $('#question_zone #answers #ans2').click(function(e) {e.preventDefault(); Text.next(2);});
    
  },
  
  next: function(step) {
	  this._q_step += '_'+step;
    this._q_num++;
    if (this._q_num > this._q_total) {
      this.end();
    }
    else {
      $('#question_zone').hide().fadeIn('slow');
      $('#question_zone').attr('class', 'q'+this._q_step);
    }
  },
   
  end: function() {    
    $('#question_zone').hide();      
    $('#inputzone').fadeIn('slow');
    update_infoserviceid('form',this._q_step);
    $('#container').removeClass('imagestep0').addClass('imagestep1');
  }
  
};

