// JavaScript Document


function inputEmpty(id){
	//document.getElementById(id).value="";
	if(document.getElementById(id).value == 'O que vc procura?'){

		document.getElementById(id).value = ''; 
	}
	
}


function preencher(id){
	//document.getElementById(id).value="";
	if(document.getElementById(id).value == ''){

		document.getElementById(id).value = 'O que vc procura?'; 
	}
	
}
