﻿var Pos_Sitetop_Banner_960 = 'AD_Sitetop_960';

var Sitetop_Banners = new Array();
Sitetop_Banners[1] = '<iframe id="baiduSpFrame" border="0" vspace="0" hspace="0" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="no" width="960" height="90" src="http://spcode.baidu.com/spcode/spstyle/style2833.jsp?tn=manmee_sp&ctn=0&styleid=2833"></iframe>';
Sitetop_Banners[2] = '<iframe id="baiduSpFrame" border="0" vspace="0" hspace="0" marginwidth="0" marginheight="0" framespacing="0" frameborder="0" scrolling="no" width="960" height="90" src="http://spcode.baidu.com/spcode/spstyle/style3370.jsp?tn=manmee_sp&ctn=0&styleid=3370"></iframe>';
Sitetop_Banners[3] = '<a href="http://blog.sina.com.cn/manmee/" target="_blank"><img src="/images/publicize/manmee_track.jpg" alt="漫迷漫画更新记录" /></a>';

function Publicize(pos,source,index)
{
    if(index)
    {
        $('#'+pos).html(source[index]);
    }
    else
    {        
        $('#'+pos).html(GetRandomAd(source));
    }
}

function GetRandomAd(source)
{
    var max = source.length - 1;
    var r_index = Math.ceil(Math.random() * max);
    return source[r_index];
}