

$(document).ready(function(){
	
	$('#query').focus(function() {
		
		val = $(this).val();
		
		if(val == "I'm looking for...") {
			$(this).val('');
		}
		
	});
    
});


