﻿
$(document).ready(function () {

    $("button, input:submit, input:reset, input:button, .btn ").button();

    $(function () {
        window.setTimeout(function () { $('#btnLive').animate({ bottom: '+=61' }) }, 2000);
    })

    $("#btnBuscar").click(function () {
        if ($("#tbBusqueda").val() != "") {
            location.href = '/buscador/' + $("#tbBusqueda").val()
        }
    });

    $("ul#topnav li").hover(function () {
        $(this).css({ 'background': '#1376c9 url(/images/menu/topnav_a.gif) repeat-x' });
        $(this).find("span").show();
    }, function () {

        $(this).css({ 'background': 'none' });
        $(this).find("span").hide();
    });

    $("#tbBusqueda").focus(function () {
        $(this).addClass("sombra");
    });

    $("#tbBusqueda").blur(function () {
        $(this).removeClass("sombra");
    });

    Cufon.replace('.titulo, .encabezadoPlanHome_contenedor_item_precio, .encabezadoPlanHome', { hover: 'true' })

});
