<!--
	message = "ชญาดาการ์เด้นเฮ้าส์ & รีสอร์ท" + "^" + "^" + "บ้านชุดชั้นเดียว 1 ห้องนอน 1 ห้องน้ำ" + "^" + "^"+ "บ้านชุด 2 ชั้น 2 ห้องนอน 2 ห้องน้ำ" + "^" + "^"+ "ทุกห้องมีอินเตอร์เน็ตความเร็วสูงและเคเบิลทีวี" + "^" + "^" + "^";
	scrollSpeed = 60;
	lineDelay   = 1000;
	txt         = "";
function StatusText(pos) {
	if (message.charAt(pos) != '^') {
		txt    = txt + message.charAt(pos);
		status = txt;
		pauze  = scrollSpeed;
	}
	else {
		pauze = lineDelay;
		txt   = "";
		if (pos == message.length-1) pos = -1;
	}
	pos++;
	setTimeout("StatusText('"+pos+"')",pauze);
}
StatusText(0);
//-->