$(document).ready( function() {
	$(".input_inf").focus( function(srcc) {
		if ($(this).val() == $(this).attr('title')) {
			$(this).removeClass("input_inf");
			$(this).val("");
		}
	});
	$(".input_inf").blur( function() {
		if ($(this).val() == "") {
			$(this).addClass("input_inf");
			$(this).val($(this).attr('title'));
		}
	});
	$(".input_inf").blur();
	$("form").submit( function() {
		$(".input_inf").each( function() {
			if($(this).val() == this.title) {
				$(this).val("");
			}
		});
	});
});
