jstd2.innerHTML = jstd1.innerHTML;
function MarqueeJSTD() {
	if(direction == "right"){
		if (jstd.scrollLeft <= 0) {
			jstd.scrollLeft += jstd2.offsetWidth;
		} else {
			jstd.scrollLeft -= space;
		}
	}else{
		if (jstd2.offsetWidth <= jstd.scrollLeft) {
			jstd.scrollLeft -= jstd1.offsetWidth;
		} else {
			jstd.scrollLeft += space;
		}
	}
}
var MyMarJSTD = setInterval(MarqueeJSTD, speed);

jstd.onmouseover = function () {
	clearInterval(MyMarJSTD);
}

jstd.onmouseout = function () {
	MyMarJSTD = setInterval(MarqueeJSTD, speed);
}
