window.addEvent('domready', busqueda);

function busqueda (){
	var obligatorio = "Buscar pregunta";
	$("textoBuscar").addEvents({
	    'blur': function(){
			if (this.value == "") {
		        this.value = obligatorio;
			}
	    },
	    'focus': function(){
			if (this.value == obligatorio) {
	        	this.value = "";
			}
	    }
	});
	$("busqueda").addEvents({
		'submit': function(e){
			if ($("textoBuscar").value == obligatorio){
				e.stop();
			}
			
			if ($("textoBuscar").value.length < 4) {
				e.stop();
			}
		}
	});
}