$(document).ready(function()
{

    var temp;
 
	$('input[type="text"]').focus(function() {
         temp = this.value;
         this.value = '';
    });
     $('input[type="text"]').blur(function() {
        if (this.value == '') this.value = temp;
    });
	
	
	 
 




 
});


