$(document).ready(function() {
	$("#questionForm").validate();
	$("#contactForm").validate();
	$("#registerForm").validate();
	$("#formAddNewUser").validate();
	$("#CompanyEditForm").validate();
});


$(function() {
		// highlight 
		var elements = $("input[type!='submit'], textarea, select");
		elements.focus(function(){
			$(this).parents('.row').addClass('highlight');
		});
		elements.blur(function(){
			$(this).parents('.row').removeClass('highlight');
		});
	});