$(document).ready(function(){ 

 	$('#s').each(function(){
		if(this.value==''){
			this.value='Pesquisar no site';
			$(this).css('color','66');
			}
	 });
	$('#s').focus(function(){
		if(this.value=='Pesquisar no site'){
			this.value='';
			$(this).css('color','000');}
	 });
	$('#s').blur(function(){
	    if(this.value==''){
			this.value='Pesquisar no site';
			$(this).css('color','666');
			}
	 });
}); 
