$().ready(function() {
	$(".field").focus( function () { 
		$(this).css("background-color", BgColorCodeSel);
		$(this).css("color", TextColorCodeSel);
		$(this).css("border", "2px " + BorderColorCodeSel + " solid");
		
		var id = $(this).attr("id");
		$("#XMS" + id).show();
	});				 
	
	$(".field").blur( function () { 
		$(".field").css("background-color", BgColorCode);
		$(".field").css("color", TextColorCode);
		$(".field").css("border", "1px " + BorderColorCode + " solid");
		$(".note").hide();
	});
		
});
