jQuery(function(){
    var tb_now = new Date();
    var tb_from  = new Date(2012,  1-1,  1,  0,  0,  0);//START
    var tb_until = new Date(2012,  1-1, 31, 23, 59, 59);//END

    if (tb_now.getTime() >= tb_from.getTime() && tb_now.getTime() <= tb_until.getTime()) {
        $("#timer-banner-newyear").hide()
            .append('<a href="sp/ichifuna_sale/"><img src="bn-ichifuna-win.jpg" alt="市船サッカー部優勝おめでとうセール" class="w-fill h-opacity" style="width:100%;height:auto;"></a>')
            .slideDown({
                duration: 2000,
                easing: 'easeOutBounce'});
    }
});

