$(document).ready(function() {
	$('ul li label').next().not('select, input[type="radio"], input[type="checkbox"]').addClass("idleField");
  		$('ul li label').next().focus(function() {
		$(this).removeClass("idleField").not('select, input[type="radio"], input[type="checkbox"]').addClass("focusField");
		$(this).parent().find('.itemError').hide('');
  			$(this).parent().find('.note').show('');
	});
	
	$('ul li label').next().not('select').blur(function() {
		$(this).removeClass("focusField").not('select, input[type="radio"], input[type="checkbox"]').addClass("idleField");
  			$(this).parent().find('.note').hide('');
	});
});		