$(document).ready(function() {
	$(".input").focus (function() {
		$(this).addClass('foco');
	});
	$(".input").blur (function() {
		$(this).removeClass('foco');
	});
	
	$("#texto_busqueda").focus (function(){
		$(this).attr("value", "");
	});
	
	$("#texto_busqueda").blur (function(){
		if ($(this).attr("value") == "")
			$(this).attr("value", "Texto a buscar");
	});
});
