		$(document).ready(function() {

			// INPUT - AUTO VALUE
			
			var eInput = $(":input.auto");
			eInput.each(function() {
				if($(this).attr("title")!="") { $(this).val($(this).attr("title")); }
			});
			eInput.focus(function() {
				if($(this).attr("title")!="" && $(this).val() == $(this).attr("title")) { $(this).select(); }
			});
			eInput.blur(function() {
				if($(this).attr("title")!="" && $(this).val() == "") {	$(this).val($(this).attr("title"));	}
			});
			
		});
