function banArray(len) {
	this.length=len
}
Text = new banArray(2)
Text[0] = "Hangul is the Best alphabet."
Text[1] = "Hangul is the Korean alphabet."
Text[2] = "Hangul is Fun!"
ScriptText = new banArray(2)

var i = -1
function playBanner()
{
	if (i == 2) 
	{
		i = 0
	}
	else
	{
		i++
	}
	
	pos.filters[0].apply()
	pos.innerText = Text[i]
	
	pos.filters[0].play()

	setTimeout("playBanner()",7000)
}	 
