$(window).load(function() {
		$("#aemail").bind("keyup" , function(element) {
				if(! /^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/i.test($(this).val())) {
						$(this).css('border' , '1px solid red');
				}
				else {
						$(this).css('border' , '1px solid #789E27');
				}
		});

		$("#referralAgent").bind("submit" , function() {
			 if( $("#aemail").val().length == 0 || $("$aname").val().length == 0 ) {
					 return false;
			 }
		});
});