lastScrollY = 0;
function heartBeat(){
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
//alert(diffY);
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.getElementById("leftDiv").style.top = parseInt(document.getElementById("leftDiv").style.top)+percent+"px";

lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
//000
window.setInterval("heartBeat()",1);
//-->
//000
function close_left1(){
    left1.style.visibility='hidden';
}
function close_left2(){
    left2.style.visibility='hidden';
}

//
document.writeln("<style type=\"text\/css\">");
document.writeln("#leftDiv{width:78px;height:86px;position:absolute;}");
document.writeln(".itemFloat{width:78px;height:auto;line-height:5px}");
document.writeln("<\/style>");
//
document.writeln("<div id=\"leftDiv\" style=\"top:240px;left:5px\">");
//------
//---L1
document.writeln("<div id=\"left1\" class=\"itemFloat\">");
document.writeln("<embed src=flash/bird.swf width=78 height=86 quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash wmode=transparent></embed>");
document.writeln("<\/div>");

document.writeln("<\/div>");

