// JavaScript Document
function move_text(){
var mtext=document.getElementById("movetext");

mtext.scrollDelay=1;  //Ã¿¹öX
mtext.scrollAmount=1  //ÒÆ¶¯YÏñËØ
}

function mouse_over(){

var mtext=document.getElementById("movetext");
mtext.stop();

}

function mouse_out(){

var mtext=document.getElementById("movetext");
mtext.start();

}

function colorchang1(who){

who.style.backgroundColor="#f0f0f0"

}

function colorchang2(who){

who.style.backgroundColor="#ffffff"

}