
  var fixedToggleState = 'ex';
  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 .title:first').animate( {opacity: '0'}, 1000 ).css({display: 'none'});
      $('#expressRequest .title:first').css( {display: 'block'} ).animate( {opacity: '1'}, 500 );
      $('#fixedBooking').animate( {height: tmpHeight + 'px'}, 1500 );
		  $('#fixedBooking .mjSeekdaContainer').css( {display: 'block'} ).animate( {opacity: '1'}, 1000 );
      $('#expressRequest').animate( {left: '-188px'}, 1500 );
			
		}else if(tab == 'ex' && fixedToggleState !== 'ex') {
		  
		  $('#expressRequest').animate( {left: '0px'}, 1500 );
		  $('#fixedBooking').animate( {height: '160px'}, 1500 );
		  
		  $('#fixedBooking .mjSeekdaContainer').animate( {opacity: '0'}, 1000 ).css( {display: 'none'} );
			$('#fixedBooking .title:first').css({display: 'block'}).animate( {opacity: '1'}, 500 );
			$('#expressRequest .title:first').animate( {opacity: '0'}, 1000 );
		}
		fixedToggleState = tab;
	}
	
	function changeHeight(){
	  tmpHeight = $('#seekdaWrapperFixed').height() + 50;
	  $('#fixedBooking').animate( {height: tmpHeight + 'px'}, 1500 );
	}

