// JavaScript Document
$(document).ready(function(){
	$("#formBuscar #p").focus(function() {
		var texto = $(this).val();
		if(texto == "buscar") $(this).val("");
	});
	$("#formBuscar #p").blur(function() {
		var texto = $(this).val();
		if(texto == "") $(this).val("buscar");
	});
});
