xyfc2.innerHTML = xyfc1.innerHTML;
function MarqueeXYFC() {
	if(direction == "right"){
		if (xyfc.scrollLeft <= 0) {
			xyfc.scrollLeft += xyfc2.offsetWidth;
		} else {
			xyfc.scrollLeft -= space;
		}
	}else{
		if (xyfc2.offsetWidth <= xyfc.scrollLeft) {
			xyfc.scrollLeft -= xyfc1.offsetWidth;
		} else {
			xyfc.scrollLeft += space;
		}
	}
}
var MyMarXYFC = setInterval(MarqueeXYFC, speed);

xyfc.onmouseover = function () {
	clearInterval(MyMarXYFC);
}

xyfc.onmouseout = function () {
	MyMarXYFC = setInterval(MarqueeXYFC, speed);
}
