
// fill in stay in touch form
$(document).ready(function() {
	// hide and set name label stay in touch form				   
	var nameNotifyLabel = $('#notifyForm #notifyNameLabel').remove().text();	
	$('#notifyForm #name').addClass('placeholder').val(nameNotifyLabel).focus(function() {
		if (this.value == nameNotifyLabel) {
			$(this).removeClass('placeholder').val('');
		};
	}).blur(function() {
		if (this.value == '') {
			$(this).addClass('placeholder').val(nameNotifyLabel);
		};
	});
	$('#notifyForm').submit(function() {
		if ($('#notifyForm #name').val() == nameNotifyLabel) {
			$('#notifyForm #name').val('');
		}
	});
	
	// hide and set email label stay in touch form
	var emailNotifyLabel = $('#notifyForm #notifyEmailLabel').remove().text();
	$('#notifyForm #email').addClass('placeholder').val(emailNotifyLabel).focus(function() {
		if (this.value == emailNotifyLabel) {
			$(this).removeClass('placeholder').val('');
		};
	}).blur(function() {
		if (this.value == '') {
			$(this).addClass('placeholder').val(emailNotifyLabel);
		};
	});
	$('#notifyForm').submit(function() {
		if ($('#notifyForm #email').val() == emailNotifyLabel) {
			$('#notifyForm #email').val('');
		}
	});
});