
$(document).ready(init_home);

function init_home(){
  $('.datepicker').datepicker({minDate:'0'});
}


function goto_step(val){
  $('#request_quote_form').append('<input type="hidden" name="step" value="1"/>');
  $('#request_quote_form').attr('action', www_root + 'contact/request_a_quote#submit');
  $('#request_quote_form').submit();
 
  return false;
    
}

function toggle_short_quote(){
  short_quote = ($('#quote_contact_for_assistance').get(0).checked);
 
  if(short_quote){
      $('#bt_finish_1').show();
      $('#bt_next_1').hide();
      $('.step_indicator .step_2').hide();
      $('.step_indicator .step_3').hide();
            
  }else{
      $('#bt_finish_1').hide();
      $('#bt_next_1').show();
      $('.step_indicator .step_2').show();
      $('.step_indicator .step_3').show();
    
  }
  
}

