$(document).ready(function() {
	
	// INIT VALIDATION
	$('#loginForm').validate({
		rules: {
			username: 'required',
			password: 'required'
		},
		messages: {
			username: formatError('U moet een gebruikersnaam opgeven.'),
			password: formatError('U moet een wachtwoord opgeven.')
		}
	});
	
	// INIT TOOLTIPS
	$('#loginForm').mouseover(function() {
		
		$('img.errorImage').tooltip({
			showURL: false,
			positionRight: true,
			bodyHandler: function() {
				return $(this).attr("hovertext");
			}
		});
		
	});	
	
});
