
/******************
* 滑动菜单代码
*******************/

document.write("<div id='sky' style='z-index:2;position:absolute;top:240px;left:820px;display:block;'>");
	document.write("<table border=0 cellspacing=0 cellpadding=0 width=158>");
		document.write("<tr>");
		document.write("<td align=\"center\">");	
        document.write("<iframe frameborder=\"0\" src=\"link.html\" height=\"450\" width=\"158\" scrolling=\"no\" style=\"background-color:transparent\"></iframe>"); 	
/*		document.write("<a href=\"CategoryList.html?CategoryID=null&CategoryID=c373e905de24197b8f6e269321dd1780&ProductPicker_action=Searchcategory\"><img src=\"../../../592picconores/images/piccono/ad.gif\" border=\"0\"></a>");	*/
		document.write("</td>");
		document.write("</tr>");
        
		/*
		document.write("<tr><td height=11></td></tr>");
		document.write("<tr>");		
		document.write("<td>");		
        document.write("<iframe frameborder=\"0\" src=\"link.html\" height=\"340\" width=\"81\" scrolling=\"no\" style=\"background-color:transparent\"></iframe>"); 		
		document.write("</td>");		
		document.write("</tr>");
		*/
	document.write("</table>");
document.write("</div>");


	self.onError=null;
	currentX = currentY = 0;  
	whichIt = null;           
	lastScrollX = 0; lastScrollY = 0;
	NS = (document.layers) ? 1 : 0;
	IE = (document.all) ? 1: 0;
	/* STALKER CODE */

/*
	function heartBeat() {
		if(IE) { 
			  diffY = document.body.scrollTop; 
 			  diffX = 0; 
		       }
	    if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
		if(diffY != lastScrollY) {
	                percent = .1 * (diffY - lastScrollY);
	                if(percent > 0) percent = Math.ceil(percent);
	                else percent = Math.floor(percent);
			if(IE) document.all.sky.style.pixelTop += percent;
			if(NS) document.sky.top += percent; 
	                lastScrollY = lastScrollY + percent;
	    }
		if(diffX != lastScrollX) {
			percent = .1 * (diffX - lastScrollX);
			if(percent > 0) percent = Math.ceil(percent);
			else percent = Math.floor(percent);
			if(IE) document.all.sky.style.pixelLeft += percent;
			if(NS) document.sky.top += percent;
			lastScrollY = lastScrollY + percent;
		}	
	}	
	if(NS || IE) action = window.setInterval("heartBeat()",1);*/