$(document).ready(function() { 

// INNER LABELS

// password set-up
$('#non-password').show();
$('#SZPassword').hide();

$('#non-password').focus(function() {
	$('#non-password').hide();
	$('#SZPassword').show();
	$('#SZPassword').focus();
});
$('#SZPassword').blur(function() {
	if($('#SZPassword').val() == '') {
		$('#non-password').show();
		$('#SZPassword').hide();
	}
}); 

// other fields
$('#CaptchaV2').val('< enter this');

$('#FullName, #EmailAddress, #WorkPhone, #CAT_Custom_76855, #CaptchaV2').each(function() {
  var default_value = this.value;
	$(this).focus(function() {
	  if(this.value == default_value) {
	  this.value = '';
	  }
  });
  $(this).blur(function() {
	if(this.value == '') {
	this.value = default_value;
	}
  });
});

// KEY ITEMS
$('.key-items li h2, .key-items li h3').toggle(function() {
	$(this).parent().addClass('ki-li-reset');
	$(this).parent().parent().addClass('ki-ul-reset');
},
function () {
	$(this).parent().removeClass('ki-li-reset');
	$(this).parent().parent().removeClass('ki-ul-reset');
});


});

