/*Begin: Letreiro do Status*/
var current = 0
var x = 0
var speed = 50
var speed2 = 2000
function initArray(n) {
	this.length = n;
	for (var i =1; i <= n; i++) {
		this[i] = ' '
	}
}

typ = new initArray(6)
typ[0]="Dal-Brin Diversões mais diversão para seu Evento"
typ[1]="A Dal-Brin atende toda a região do ABC e Grande São Paulo"
typ[2]="Alugamos e Vendemos equipamentos para Buffets, Condomínios, entre outros"
typ[3]="Dal-Brin Diversões mais diversão para seu Evento"
typ[4]="Entrem em contato conosco e marquem uma visita"
typ[5]="Temos uma infinidade de equipamentos de entretenimento"

function typewrite() {
	var m = typ[current]
	window.status = m.substring(0, x++) + "!" //este é o caracter que aparece preenchendo o texto
	if (x == m.length + 1) {
		x = 0
		current++
		if (current > typ.length - 1) {
			current = 0
		}
		setTimeout("typewrite()", speed2)
	}else{
		setTimeout("typewrite()", speed)
	}
}
typewrite()
/*End: Letreiro do Status*/
/*Begin: Gerenciamento de Widgets*/
var nwidget = 0
var widgets = new Array(20)
var references = new Array(20)
var wurl = new Array(19)
  wurl[0] = "equips"
  wurl[1] = "contato"
  wurl[2] = "empresa"
  wurl[3] = "clientes"
  wurl[4] = "games"
  wurl[5] = "danca"
  wurl[6] = "pinba"
  wurl[7] = "simul"
  wurl[8] = "airga"
  wurl[9] = "autor"
  wurl[10] = "video"
  wurl[11] = "playg"
  wurl[12] = "pisci"
  wurl[13] = "camae"
  wurl[14] = "gango"
  wurl[15] = "pebol"
  wurl[16] = "taman"
  wurl[17] = "guita"
  wurl[18] = "propa"
var title = new Array(19)
  title[0] = "Equipamentos"
  title[1] = "Contato"
  title[2] = "Empresa"
  title[3] = "Clientes"
  title[4] = "Video Game"
  title[5] = "Máquina de Dança"
  title[6] = "Pinball"
  title[7] = "Simulador de Corrida"
  title[8] = "Airgame"
  title[9] = "Autorama"
  title[10] = "Videokê"
  title[11] = "Playground"
  title[12] = "Piscina de Bolinhas"
  title[13] = "Cama Elástica"
  title[14] = "Gangorras"
  title[15] = "Pebolim"
  title[16] = "Tamanko Ball"
  title[17] = "Guitar Hero"
  title[18] = "Desenvolvimento e Design"  

function abreLayer(numero){
  document.getElementById("flash_pinball").style.visibility = "hidden"
  if(numero==0){
	  widgets[nwidget] = dhtmlwindow.open("equips", "ajax", "equips0.html", "Equipamentos", "width=220px,height=270px,left=10px,top=130px,resize=1,scrolling=1")
	  references[numero] = nwidget;
	  nwidget++
  }else if(numero==1){
	  widgets[nwidget] = dhtmlwindow.open(wurl[numero], "iframe", wurl[numero]+'0.html', title[numero], 'width=500px, height=250px, left='+(5*parseInt(numero)+240)+'px, top='+(5*parseInt(numero)+10)+'px, resize=1, scrolling=1')
	  references[numero] = nwidget;
	  nwidget++
  }else{
	  widgets[nwidget] = dhtmlwindow.open(wurl[numero], "iframe", wurl[numero]+'0.html', title[numero], 'width=520px, height=270px, left='+(5*parseInt(numero)+240)+'px, top='+(5*parseInt(numero)+10)+'px, resize=1, scrolling=1')
	  references[numero] = nwidget;
	  nwidget++
  }
}
function trocaConteudo(ref, f){
  widgets[references[ref]].load('ifrane', wurl[ref]+f.modelos.value+'.html', title[ref]);
}
function ativarPinball(){
  for (var i = 0; i < nwidget; i++)
	widgets[i].minimize()
  document.getElementById("flash_pinball").style.visibility = "visible"
}
/*End: Gerenciamento de Widgets*/

