﻿function emailFormSubmit() {
	$('#signupEmailFormForm').hide();
	$('#signupEmailFormSubmitted').show();
}
$(document).ready(function() {
	$('.replaceme').each(function(index, elm) {
		if (index == 0) {
			elm.value = "Indtast navn";
			$(elm).bind('click', function() {
				if ($(this).val() == 'Indtast navn') $(this).val('');
			});
			$(elm).bind('blur', function() {
				if ($(this).val() == '') $(this).val('Indtast navn');
			});
		}
		else if (index == 1) {
			elm.value = "Indtast e-mailadresse";
			$(elm).bind('click', function() {
				if ($(this).val() == 'Indtast e-mailadresse') $(this).val('');
			});
			$(elm).bind('blur', function() {
				if ($(this).val() == '') $(this).val('Indtast e-mailadresse');
			});
		}
	});
});