$(document).ready (function() {	var searchBox = $("#searchform input.xlarge");	var searchBoxDefault = "Busca tu receta...";		searchBox.focus(function(e){  		$(this).addClass("active");  		if($(this).attr("value") == searchBoxDefault) $(this).attr("value", "");	});  	searchBox.blur(function(e){  		$(this).removeClass("active"); 		if($(this).attr("value") == "") $(this).attr("value", searchBoxDefault);			}); });
