var nowY=0;
var stepY=1;
var stepX=1;
var positionX=0;
var positionY=0;
var w=window.screen.width-90;
var scrollPos;

function floatMove(){
	
	if(typeof window.pageYOffset != 'undefined'){ 
	   scrollPos = window.pageYOffset; 
	}else if(typeof document.compatMode != 'undefined' && document.compatMode != 'BackCompat'){ 
	   scrollPos = document.documentElement.scrollTop; 
	}else if(typeof document.body != 'undefined'){ 
	   scrollPos = document.body.scrollTop; 
	}

targetY=scrollPos+74;
diffY=targetY-nowY;
moveY=diffY/4;
nowY+=moveY;

document.getElementById('content_small').style.top=nowY + "px";
document.getElementById('content_big').style.top=nowY + "px";
document.getElementById('content_r_big').style.top=nowY + "px";
document.getElementById('content_r_small').style.top=nowY + "px";
}
function floatStart(){
	setInterval("floatMove()",100);
	if (window.screen.width<=1024){//小屏就关闭
		hideContent();
	}
}

/*关闭*/
function closeShowDiv(){
	document.getElementById('Forklift_B').style.display = 'none';
	document.getElementById('Forklift_S').style.display = 'block';
}
//window.setTimeout("closeShowDiv()",15000);//15秒
/*隐藏*/
function hideContent(){
	document.getElementById("Forklift_B").style.display = 'none';
	document.getElementById("Forklift_S").style.display = 'block';
}
/*显示*/
function showContent(){
	document.getElementById("Forklift_S").style.display = 'none';
	document.getElementById("Forklift_B").style.display = 'block';
	//window.setTimeout("closeShowDiv()",15000);//10秒
}
/*样式*/
document.write('<style>');
document.write('#content_small,#content_big{position:absolute;left:0; top:20px;z-index:100;}');
document.write('#content_r_small,#content_r_big{position:absolute;right:0; top:20px;z-index:100;}');
document.write('#content_small .con_coles, #content_r_small .con_coles{width:15px; height:16px; font-size:12px; background:#ddd; text-align:center; cursor:pointer; line-height:16px; }');
document.write('#content_big .con_coles,#content_r_big .con_coles {width:90px; height:16px; font-size:12px; background:#ddd; text-align:left; text-indent:5px; line-height:16px; cursor:pointer; }');
document.write('</style>');
/*大广告*/
document.write('<div id="Forklift_B">');
document.write('<div id="content_big" onmouseover=showContent() onmouseout=hideContent()>');//左边大广告
document.write('<br><a href="http://www.chinarack.com.cn/shop/index.php?id=8990" target="_blank"><img src="indexlogo/flash/jinaini-left.jpg" width="90" height="200" border="0"/></a>');
document.write('<div class="con_coles" onmouseover=hideContent()>关闭</div></div>');
document.write('<div id="content_r_big" onmouseover=showContent() onmouseout=hideContent()>');//右边大广告
document.write('<br><a href="http://www.chinarack.com.cn/shop/index.php?id=8990" target="_blank"><img src="indexlogo/flash/jinaini-right.jpg" width="90" height="200" border="0"/></a>');
document.write('<div class="con_coles" onclick=hideContent()>关闭</div></div>');
document.write('</div>');
/*缩略小广告*/
document.write('<div id="Forklift_S" style="display:none" onmouseover=showContent() onmouseout=hideContent()>');
document.write('<div id="content_small"><a href="http://www.chinarack.com.cn/shop/index.php?id=8990" target="_blank"><img src="indexlogo/flash/jinaini15-200.jpg" width="15" height="200" border="0"/></a><div class="con_coles" onclick=showContent()>展</div></div>');//左边小广告
document.write('<div id="content_r_small" onmouseover=showContent() onmouseout=hideContent()><a href="http://www.chinarack.com.cn/shop/index.php?id=8990" target="_blank"><img src="indexlogo/flash/jinaini15-200.jpg" width="15" height="200" border="0"/></a><div class="con_coles" onclick=showContent()>展</div></div>');//右边小广告
document.write('</div>');
/*上下移动*/
floatStart();
