// funtion.js - v1.1 aparece.com 
	var Scroll=""
	var wiper
	var index=0
	var space=" "
	reset();

	function reset()
	{
	text = new Array(6)
	var textnr=Math.round((Math.random()*6))
	text[0]="APARECE - O seu Guia de Diversão     www.APARECE.com"
	text[1]="Atenção ás novas categorias... veja também a nossa loja On-Line"
	text[2]="Publicidade? publicidade@aparece.com"
	text[3]="Ajude enviando Críticas e Sugestões "
	text[4]="APARECE"
	text[5]="www.APARECE.com"
	text[6]="Duvidas, Críticas, Sugestões? Contacte-nos através do email: info@aparece.com ou telemóvel 96 6510248 "
	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)}
	}
