$(function() {
	
	$('#s').focus(function() {
        if ($(this).val() == 'Looking for...') {
            $(this).val('');
        }
    });

});