$(document).ready(
	function(){
		$('.input-text').blur(function()
			{
				if ($(this).val() == '')
				{
				$(this).val($(this).attr("title"));
				}
			}
		);
		$('.input-text').focus(function()
			{
				if ($(this).val())
				{
				$(this).val('');
				}
			}
		);

		$(".input-submit").click(function () { 
		$(this).disabled = true; 
		});

	}
);




	 
