function initEcAd() {
document.all.AdLayer1.style.posTop = -200;
document.all.AdLayer1.style.visibility = 'visible'
document.all.AdLayer2.style.posTop = -200;
document.all.AdLayer2.style.visibility = 'visible'
MoveLeftLayer('AdLayer1');
MoveRightLayer('AdLayer2');
}
function MoveLeftLayer(layerName) {
var x = 8;
var y = 320;// 左侧广告距离页首高度
var diff = (document.body.scrollTop + y - document.all.AdLayer1.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = parseInt(y)");
eval("document.all." + layerName + ".style.posLeft = x");
setTimeout("MoveLeftLayer('AdLayer1');", 20);
}
function MoveRightLayer(layerName) {
var x = 8;
var y = 320;// 右侧广告距离页首高度
var diff = (document.body.scrollTop + y - document.all.AdLayer2.style.posTop)*.40;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = y");
eval("document.all." + layerName + ".style.posRight = x");
setTimeout("MoveRightLayer('AdLayer2');", 20);
}

document.write("<div id=AdLayer1 style='position: absolute;visibility:hidden;z-index:100'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='97' height='325'><param name='movie' value='/flash/ban1.swf' /><param name='quality' value='high' /><param name='wmode' value='transparent' /><embed src='/flash/ban1.swf' width='97' height='325' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' wmode='transparent'></embed></object></div>"
+"<div id=AdLayer2 style='position: absolute;visibility:hidden;z-index:100'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='97' height='325'><param name='movie' value='/flash/ban2.swf' /><param name='quality' value='high' /><param name='wmode' value='transparent' /><embed src='/flash/ban2.swf' width='97' height='325' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' wmode='transparent'></embed></object></div>");
initEcAd()


jQuery.fn.scrollDiv = function(){
	return this.each(function(){
		var $local = jQuery(this);
		$local.slideDown("slow");
		var _closeMsg = function(obj)
		{
			$local.slideUp("slow");
		}
		$local.find("a.close").bind("click",function(){_closeMsg(this);});
	});
	
}
/*	jQuery(document).ready(function(){
		jQuery("#NewMsg").scrollDiv();			
	});*/
// JavaScript Document