$(document).ready(function() {
	
	$('#s').focus( function() {		
		if($(this).val() == 'Pesquisar no site') $(this).val('');
	});
	$('#s').blur( function() {
		if($(this).val() == '') $(this).val('Pesquisar no site');
	});
});
