$(document).ready(function(){
	$(".pageForm:not(#shortForm) input, .pageForm:not(#shortForm) select, .pageForm:not(#shortForm) textarea").focus(function () {
	         $(this).parent().addClass("focus");
	});
	$(".pageForm:not(#shortForm) input, .pageForm:not(#shortForm) select, .pageForm:not(#shortForm) textarea").blur(function () {
	         $(this).parent().removeClass("focus");
	});
});
