$(function(){
	$(".busqueda").blur(function(){
		var valor = $(this).val();
        if (!$(this).val()){ 
            this.value = (this.defaultValue ? this.defaultValue : '');  
	    }
	});
	
	$(".busqueda").focus(function(){
		 if (this.value == this.defaultValue){  
			 this.value = '';
		 }
	});
	
	$(".buscar").click(function(){			
	    var val = $('.busqueda').val();
		if(val != "Buscar..."){
			 if (this.value == this.defaultValue){  
				 this.value = '';
			 }
			 
			document.location.href="catalogo.php?modo=buscar";
		}
	});
});
