
<!--
/**
* reflection.js v1.5
*
* Contributors: Cow http://cow.neondragon.net
*                Gfx http://www.jroller.com/page/gfx/
*                Sitharus http://www.sitharus.com
*                Andreas Linde http://www.andreaslinde.de
*                Tralala, coder @ http://www.vbulletin.org
*
* Freely distributable under MIT-style license.
*/

/* From prototype.js */


		
		///////////////////////////////
		function run() {
oMarquee.scrollTop += iScrollAmount;
if ( oMarquee.scrollTop == iLineCount * iLineHeight )
oMarquee.scrollTop = 0;
if ( oMarquee.scrollTop % iLineHeight == 0 ) {
window.setTimeout( "run()", 2000 );
} else {
window.setTimeout( "run()", 10 );
}
}
function loady()//滚动效果
{
 oMarquee = document.getElementById("mq"); //滚动对象
 iLineHeight = 168; //单行高度，像素
 iLineCount = 3; //实际行数
 iScrollAmount = 1; //每次滚动高度，像素

oMarquee.innerHTML += oMarquee.innerHTML;
window.setTimeout("run()",2000);
}

//-->
