$(document).ready(function() { 
$('#tf').focus(function(){
		$(this).val('');
	});
	$('#tf').blur(function(){
		var status = $(this).val();
		if (status == '') {
			$(this).val('Looking for something?');
		}
	});
	});
