jQuery(document).ready(function($)
{
	//validation must be in two separate commands, not comma separated, or all subsequant forms will try to validate the first form
	
	$("#portalAccessLogin.login").validate({
		messages: {
			n: "Please enter your Username"
		}				   
	});
});
