
  var fixedToggleState = 'fix';
  var tmpHeight        = 328;
  var enlargeRooms     = false;
  var enlargeKids1     = false;
  var enlargeKids2     = false;
  var enlargeKids3     = false;

  function toggleFixedExpress(tab){
    
    $('#cmbroom, #cmbchildren_1, #cmbchildren_2, #cmbchildren_3').change(function() {
      changeHeight();
    });
    
    if(tab == 'fix' && fixedToggleState !== 'fix') {
      $('#fixedBooking').animate( {height: 136 + 'px'}, 1500 );
      $('#quickFormsWrapper .quickFormsWrapper').animate( {left: '0px'}, 1500 );
      
    }else if(tab == 'ex' && fixedToggleState !== 'ex') {
      $('#fixedBooking').animate( {height: tmpHeight + 'px'}, 1500 );
      $('#quickFormsWrapper .quickFormsWrapper').animate( {left: '-240px'}, 1500 );
    }
    fixedToggleState = tab;
  }
  
  function changeHeight(){
    tmpHeight = $('#seekdaWrapperFixed').height() + 50;
    $('#fixedBooking').animate( {height: tmpHeight + 'px'}, 1500 );
  }
  
  function toggleNewFixedExpress(tab){
    if(tab == 'fix' && fixedToggleState !== 'fix') {
      $('#fixedBooking').slideUp('fast',function(){ $('#expressRequest').slideDown('fast',function(){ }); });
    }else if(tab == 'ex' && fixedToggleState !== 'ex') {
      $('#expressRequest').slideUp('fast',function(){ $('#fixedBooking').slideDown('fast',function(){ }); });
    }
    fixedToggleState = tab;
  }

