$(function() {
  video_phone_contacts();
});

function video_phone_contacts() {
  $('#toggle_vco').click(function() {
    if ($(this).is(':checked')) {
      $('#vco').show();
      $('#vco input, #vco select').enable();
    }
    else {
      $('#vco').hide();
      $('#vco input, #vco select').disable();
    }
  });
  
  $('#toggle_vp_alert_contact').click(function() {
    if ($(this).is(':checked')) {
      $('#vp_alert_contact1').show();
			$('#vp_alert_contact2').show();
			$('#vp_alert_contact3').show();
      if ($('#vp_alert_contact1 input[type=text]').val() == '') {
        $('#vp_alert_contact1 input[type=text]').val($('#customer_email').val());
      }
    } 
    else {
      $('#vp_alert_contact1').hide();
      $('#vp_alert_contact1 input[type=text]').val('');
			$('#vp_alert_contact2').hide();
      $('#vp_alert_contact2 input[type=text]').val('');
			$('#vp_alert_contact3').hide();
      $('#vp_alert_contact3 input[type=text]').val('');
    }
  });

  
  $('#toggle_videomail_contact').click(function() {
    if ($(this).is(':checked')) {
      $('#videomail_contact1').show();
      $('#videomail_contact2').show();
      $('#videomail_contact3').show();
			$('#videomail_contact_greeting').show();
			$('#videomail_greeting_message').show();
      if ($('#videomail_contact1 input[type=text]').val() == '') {
        $('#videomail_contact1 input[type=text]').val($('#customer_email').val());
      }
    }
    else {
      $('#videomail_contact1').hide();
			$('#videomail_contact_greeting').hide();
			$('#videomail_greeting_message').hide();
      $('#videomail_contact1 input[type=text]').val('')
      $('#videomail_contact2').hide();
      $('#videomail_contact2 input[type=text]').val('')
      $('#videomail_contact3').hide();
      $('#videomail_contact3 input[type=text]').val('')
    }
  });
}
