﻿
function init_readpapers() {
    var paper_ids = getCookie(paperids_key);
    if (paper_ids != null && paper_ids != "") {
        var url = "/webapi.aspx?action=get_read_paper";
        var data = { paper_ids: paper_ids };
        var callback = function(data) {
            if (data.substring(0, 2) == '0#') {
                var html = data.substring(2);
                $('#read_paper_ul').append(html);
                choice_tab($('#board_tab_2'));
            }
        };
        $.get(url, data, callback); 
    }
}

function choice_tab(obj) {
    $('.current').removeClass('current');
    var tabID = obj.addClass('current').attr('id');
    if (tabID == 'board_tab_3') {
        //init_readpapers();
    }
    $('.ui-tabs-show').removeClass('ui-tabs-show').addClass('ui-tabs-hide');
    $('#content_' + tabID).removeClass('ui-tabs-hide').addClass('ui-tabs-show');
    return true;
}

function get_local_paper() {
    var url = "/webapi.aspx?action=get_local_paper";
    if (url.indexOf('?') > -1) {
        url += '&';
    } else {
        url += '?';
    }
    url += 'timestamp=' + new Date().getTime();
    var data = null;
    var callback = function(data) {
        if (data.substring(0, 2) == '0#') {
            var html = data.substring(2);
            $('#local_paper_ul').append(html);

            var province = getCookie("province");
            if (province != null) {
                $('#board_tab_3 a').text(province + "报纸");
            }
            choice_tab($('#board_tab_3'));
        }
    }; 
    $.get(url, data, callback);
}

function showAuto() {
    n = n >= (count - 1) ? 0 : n + 1;
    $("#play_text li").eq(n).trigger('click');
}

var t = n = count = 0;

$(function() {

    count = $("#play_list a").size();
    $("#play_list a:not(:first-child)").hide();
    $("#play_info").html($("#play_list a:first-child").find("img").attr('alt'));
    $("#play_text li:first-child").css({ "background": "#fff", 'color': '#000' });
    $("#play_info").click(function() { window.open($("#play_list a:first-child").attr('href'), "_blank") });
    $("#play_text li").click(function() {
        var i = $(this).text() - 1;
        n = i;
        if (i >= count) return;
        $("#play_info").html($("#play_list a").eq(i).find("img").attr('alt'));
        $("#play_info").unbind().click(function() { window.open($("#play_list a").eq(i).attr('href'), "_blank") })
        $("#play_list a").filter(":visible").fadeOut(500).parent().children().eq(i).fadeIn(1000);
        $(this).css({ "background": "#fff", 'color': '#000' }).siblings().css({ "background": "#000", 'color': '#fff' });
    });
    t = setInterval("showAuto()", 3000);
    $("#play").hover(function() { clearInterval(t) }, function() { t = setInterval("showAuto()", 3000); });
    
    var province = getCookie("province");
    if (province != null) {
        $('#board_tab_3 a').text(province + "报纸");
    }
    get_local_paper();
    init_readpapers();

});
