$(document).ready(function(){
	$("input").focus(function() {
		$(this).parent().addClass("curFocus")
	});
	$("input").blur(function() {
		$(this).parent().removeClass("curFocus")
	});
	$("select").focus(function() {
		$(this).parent().addClass("curFocus")
	});
	$("select").blur(function() {
		$(this).parent().removeClass("curFocus")
	});
	$("textarea").focus(function() {
		$(this).parent().addClass("curFocus")
	});
	$("textarea").blur(function() {
		$(this).parent().removeClass("curFocus")
	});
});