//my javascript
var idx = new Date().getSeconds() + "";
if(location.href.indexOf("/channels/") > 0 || location.href.indexOf("/contents/") > 0)
{
    if(idx.length == 2) idx = idx.substr(1, 1);
    repChannelFlash(idx);
}
//alert(location.href.indexOf("/contents/"));

function repChannelFlash(idx)
{
    var so_ch_f = new SWFObject("http://jsdc.qiyewuyou.com/flash/channelflash (" + idx + ").swf", "flash_2", "893", "177", "7", "");
    so_ch_f.addParam("wmode", "transparent");
    so_ch_f.addParam("scale", "noscale");
    so_ch_f.addParam("quality", "high");
    so_ch_f.addParam("bgcolor", "#FFFFFF");
    so_ch_f.write("flashcontent_2");
}

if(location.href.indexOf("/contents/") > 0)
{
	$(".news-content img").load(function()
	{
        var img = $(this);
        if(img.width() > 550) img.width(550);
        //$("body").append("" + img.attr("src") + "|" + img.width() + "<br />");
	});

}
