$("txt_buscar_main").onfocus = function(){
	if(this.value == "Buscar..."){
		this.value = "";
	}
};
$("txt_buscar_main").onblur = function(){
	if(this.value == ""){
		this.value = "Buscar...";
	}
};
