//'/res/img/loghino_bt.jpg',
var brands = new Array('/res/img/loghino_alcatel.jpg',
		       '/res/img/loghino_cinecitta.jpg',
		       '/res/img/loghino_cisco.jpg',
		       '/res/img/loghino_fastweb.jpg',
                       '/res/img/loghino_hp.jpg',
                       '/res/img/loghino_mailclick.jpg',
		       '/res/img/loghino_medusa.jpg',
		       '/res/img/loghino_mondadori.jpg',
		       '/res/img/loghino_mps.jpg',
                       '/res/img/loghino_opus.jpg',
		       '/res/img/loghino_qualcomm.jpg',
		       '/res/img/loghino_radio101.gif',
		       '/res/img/loghino_siemens.jpg',
		       '/res/img/loghino_tsystems.jpg',
		       '/res/img/loghino_vodafone.jpg',
		       '/res/img/loghino_westream.jpg',
		       '/res/img/loghino_wind.jpg');
//'/res/img/loghino_bwin.jpg',
var linx = new Array('http://www.wind.it/it/privati/index.phtml',
                     'http://www.alcatel-lucent.com/',
		     'http://www.cinecitta.com/index.asp',
		     'http://www.cisco.com/global/IT/',
		     'http://www.fastweb.it/portale/?from=portale-logo',
                     'http://www8.hp.com/it/it/home.html',
                     'http://www.mailclick.it',
		     'http://www.medusa.it/',
		     'http://www.mondadori.it/',
		     'http://www.mps.it/',
                     'http://www.opus.it',
		     'http://www.qualcomm.com/',
		     'http://www.r101.it/',
		     'http://webdoc.siemens.it/CP/MAIN/Home/',
		     'http://www.t-systems.it/',
		     'http://www.vodafone.it/vodafone/trilogy/jsp/home.do?tk=9616%2Ct&tabName=HOME+VODAFONE&ty_skip_md=true',
		     'http://www.westream.eu/');
//'https://www.bwin.it/Default.aspx',
var old = 0;
var current = 0;
function initBrandRotator(){
	if (!document.images) return;
	document.images['brand'].src = brands[current];
	current=(current < brands.length-1)?current+1:0;
	setTimeout('initBrandRotator()',3000);
}
function sendPage(){
	location.href = linx[current];
}