var delay=5000 //set delay between message change (in miliseconds)
var fcontent=new Array()

///メッセージ入力欄//////////////////////////////////

begintag='<FONT STYLE="font-size: 12px;"  FACE="Tahoma">'
fcontent[0]="Do you think that &quot;cross-country run&quot; means &quot;off-road run&quot;?<br>Almost all technical magazines also deal with such."
fcontent[1]="But is that really right?"
fcontent[2]="We consider that the &quot;cross-country&quot; is &quot;crossing over a country and various areas&quot; correctly."
fcontent[3]="That is, the cross-country run which we consider is to run all of the ways which meet daily, such as a pavement way, a mountain path, a highway,and a bad road."
fcontent[4]="There is almost no necessity of running off-road to run across Japan today."
fcontent[5]="Since 4x4 special car was got there, it is also important to enjoy driving it through an &quot;off-road course&quot; greatly."
fcontent[6]="However, are most of the going and returning the pavement ways where maintenance was prudent?"
fcontent[7]="The car where the cross-country skiing performance which we consider is high in short is a car which can perform a comfortable and safe run in everyday life, though it has the running-the-whole-distance nature which is astonished through an off-road course."
fcontent[8]="All the goods of &quot;Grace&quot; which we send to you are designed by the basis of this idea."
fcontent[9]="The turbo kit for driving a highway and a long slope without stress, a shocking absorber preeminent for durability, the brake system thought safety and durability as important,"
fcontent[10]="and the suspension system which also thought a degree of comfort in an on-load as important though it had running-the-whole-distance nature preeminent off-road one - these every goods is manufactured in order to make the &quot;cross-country run&quot; which we consider upgrade more."
fcontent[11]="..........Thank you"
closetag='</font>'

///ココまで/////////////////////////////////////////

var fwidth=450 //set scroller width
var fheight=85 //set scroller height

///No need to edit below this line/////////////////

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(0,0,0)"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

frame=20;
hex=255  // Initial color value.

function colorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex-=12; // increase color value
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",20);	
}
else{
document.getElementById("fscroller").style.color="rgb(255,255,255)";
frame=20;
hex=255
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:10px"></div>')

window.onload=changecontent

