﻿//variables globales

var searchBox = $("#boxBuscar");
var searchBox2 = $("#boxBuscarNews");

var defaultText = "Buscar...";

//Mostramos / ocultamos el texto por defecto 
searchBox.focus(function () {
    if ($(this).attr("value") == defaultText) $(this).attr("value", "");
    $(this).addClass("buscarActivo");
});
searchBox.blur(function () {
    if ($(this).attr("value") == "") $(this).attr("value", defaultText);
    $(this).removeClass("buscarActivo");
});

searchBox2.focus(function () {
    if ($(this).attr("value") == defaultText) $(this).attr("value", "");
    $(this).addClass("tbhemerotecaActivo");
});
searchBox2.blur(function () {
    if ($(this).attr("value") == "") $(this).attr("value", defaultText);
    $(this).removeClass("tbhemerotecaActivo");
});
