
<!--
	var Scroll=""
	var wiper
	var index=0
	var space=" "
	reset();

	function reset()
	{
		text = new Array(3)
		var textnr=Math.round((Math.random()*3))
		text[0]="Welcome to \"Jutha Maritime Public Company Limited\"."
		text[1]="http://www.jutha.co.th/"
		text[2]="Contact us : office@jutha.co.th "
		text[3]="Don't forget to bookmark this site."
		Scroll=text[textnr]
		index=0
		main()
	}


	function main()
	{
		window.status=Scroll.substring(0,index)
		index++
		if(index==(Scroll.length+4)){setTimeout('reset_clear()',300);}
		else{setTimeout('main()',50)}
	}

	function reset_clear()
	{
		index=0
		wiper=""
		for(var a=0;a<Scroll.length;a++){wiper+=space}
		clearem()
	}

	function clearem()
	{
		window.status=wiper.substring(0,index) + "->" + Scroll.substring(index+2,Scroll.length)
		index++
		if(index==(Scroll.length+4)){reset()}
		else{setTimeout('clearem()',50)}
	}
// -->

