// JavaScript Document
$(document).ready(function() {
	$('#e-newsAddr').focus(function() {
		$('#e-newsAddr').val('');
	});
	$('#e-newsAddr').blur(function() {
		if(!$('#e-newsAddr').val().length){
			$('#e-newsAddr').val('E-mail Address')
		}
	});
	// validate the "frmValuation" form
	$("#frm-join").validate();
});
