$(document).ready(function(){
	$("form").validate();
	$("input, textarea").blur(function(){
		$(this).parent().addClass("highlight");
	});
});
