// CUSTOM JavaScript Document
window.onload = function() {
	init();
}
/*window.resize = function() {
	checkSize();	
}*/
function init() 
{
	ActivateFlash();
	bannerrotator();
}

var banners_ori = new Array(
	'fotos/slide_01.jpg',
	'fotos/slide_02.jpg',
	'fotos/slide_03.jpg',
	'fotos/slide_04.jpg',
	'fotos/slide_05.jpg');

var old = 0;
var current = 0;

function bannerrotator(language)
{
	if (!document.images) return
	while (current == old)
	{
		current = Math.floor(Math.random()*banners_ori.length);
	}
	old = current;
	document.images['slide'].src = banners_ori[current];
	setTimeout('bannerrotator()',5000);
}