function initEcAd() {
document.all.AdLayer1.style.posTop = -100;
document.all.AdLayer1.style.visibility = 'visible'
document.all.AdLayer2.style.posTop = -100;
document.all.AdLayer2.style.visibility = 'visible'
MoveLeftLayer('AdLayer1');
MoveRightLayer('AdLayer2');
}
function MoveLeftLayer(layerName) {
var x = 5;
var y = 150;
var diff = (document.body.scrollTop + y - document.all.AdLayer1.style.posTop)*.50;
var y = document.body.scrollTop + y - diff;
eval("document.all." + layerName + ".style.posTop = y");
eval("document.all." + layerName + ".style.posLeft = x");
setTimeout("MoveLeftLayer('AdLayer1');", 20);
}
function MoveRightLayer(layerName) {
var x = 5;
var y = 150;
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:1'>");
document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=7,0,19,0\" width=\"100\" height=\"260\">");
document.writeln("  <param name=\"movie\" value=\"images\/guanggao\/duble-left.swf\" \/>");
document.writeln("  <param name=\"quality\" value=\"high\" \/>");
document.writeln("  <embed src=\"images\/guanggao\/duble-left.swf\" quality=\"high\" pluginspage=\"http:\/\/www.macromedia.com\/go\/getflashplayer\" type=\"application\/x-shockwave-flash\" width=\"100\" height=\"200\"><\/embed>");
document.writeln("<\/object>");
document.write("</div>"
	+"<div id=AdLayer2 style='position: absolute;visibility:hidden;z-index:1'>");
document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=7,0,19,0\" width=\"100\" height=\"260\">");
document.writeln("  <param name=\"movie\" value=\"images\/guanggao\/duble-right.swf\" \/>");
document.writeln("  <param name=\"quality\" value=\"high\" \/>");
document.writeln("  <embed src=\"images\/guanggao\/duble-right.swf\" quality=\"high\" pluginspage=\"http:\/\/www.macromedia.com\/go\/getflashplayer\" type=\"application\/x-shockwave-flash\" width=\"100\" height=\"200\"><\/embed>");
document.writeln("<\/object>")
document.write("</div>");
initEcAd()