////////////////////////////////////////////////////////////////
// Initialize
////////////////////////////////////////////////////////////////
window.addEvent(
	'domready', 
	function() { 
		// Contact Form
		init_contact_form()
	}
);



function init_contact_form() { 
	$('contactform').addEvent(
		'submit',
		function() { 
			var errors = '';

			// Validate Fields
			if ($('username').value == '') 		errors += 'Please fill in your Name.\n'; 
			if ($('useremail').value == '') {  	errors += 'Please fill in your E-mail.\n'; }
			else { 
				var emailRegex = /[^@\s]+@\S+?\.\S+/;
				if (!emailRegex.test($('useremail').value)) { 
					errors += 'E-mail is invalid format.\n'; 
				}
			}

			// Check Errors
			if (errors) { alert(errors); return false; } else { return true; }
		}
	);
}