/*
alvo:
  1 = Platina
  2 = Diamante
  3 = Ouro
  4 = Prata
  5 = Especial

Ref:
  1 = imagens
  2 = links
  3 = total
  4 = atual
*/

var Ref = ['',
['',
 ['','galderma.jpg'],
 ['','http://www.galderma.com.br/'],
 1,
 Math.floor(Math.random() * 1) + 1
],
['',
 ['','stiefel.jpg','larocheposay.jpg','theraskin.jpg','medley.jpg','roc.jpg','neutrogena.jpg'],
 ['','http://www.stiefel.com.br/','http://www.laroche-posay.com.br/','http://www.grupoigefarma.com.br/theraskin/main.asp','http://www.medley.com.br/','http://www.johnson.com.br/','http://www.johnson.com.br/'],
 6,
 Math.floor(Math.random() * 6) + 1
],
['',
 ['','allergan.jpg','roche.jpg','mantecorp.jpg','sanofiaventis.jpg'],
 ['','http://www.allergan.com.br/','http://www.roche.com.br/','http://www.mantecorp.com.br/','http://www.sanofi-aventis.com.br/'],
 4,
 Math.floor(Math.random() * 4) + 1
],
['',
 ['','ache.jpg','libbs.jpg'],
 ['','http://www.ache.com.br/','http://www.libbs.com.br/'],
 2,
 Math.floor(Math.random() * 2) + 1
],
['',
 ['','vichy.jpg','intendis.jpg'],
 ['','http://www.vichy.com.br/','http://www.intendis.com.br'],
 2,
 Math.floor(Math.random() * 2) + 1
]
];

function changePatroc(alvo) {
	var elemento = 'patroc' + alvo;
	document.getElementById(elemento).innerHTML = '<a href="'+Ref[alvo][2][Ref[alvo][4]]+'" target="_blank"><img src="arquivos/patroc2/'+Ref[alvo][1][Ref[alvo][4]]+'" /></a>';
	var numTemp = Ref[alvo][4]+1;
	if(numTemp > Ref[alvo][3]){ numTemp = 1; }
	Ref[alvo][4] = numTemp;
	setTimeout('changePatroc('+alvo+')', 3000);
}