<!--
	if (window.addEventListener) {
		window.addEventListener('load', start, false);
	} else if (window.attachEvent) {
		window.attachEvent('onload', start);
	} else if (document.getElementById) {
		window.onload = start;
	};
	function GetE(elementId) {
		if (document.getElementById) {
			return document.getElementById(elementId);
		} else if (document.all) {
			return document.all[elementId];
		} else if (document.layers) {
			return document.layers[elementId];
		};
	};
	function toggleLayer(whichLayer) {
		var elem = GetE(whichLayer);
		
		if (elem) {
			var vis = elem.style;
			
			if (vis.display == '' && elem.offsetWidth != undefined && elem.offsetHeight != undefined) {
				vis.display = (elem.offsetWidth != 0 && elem.offsetHeight != 0) ? 'block' : 'none';
			};
			
			vis.display = (vis.display == '' || vis.display == 'block') ? 'none' : 'block';
		};
	};
	function scambio(div, img) {
		for (var i=1; i<=5; i++) { GetE('scambiotxt' + i).style.display = 'none'; };
		GetE('scambiotxt' + div).style.display = 'block';
		GetE('scambioimg').src = (img != '' ? img : 'images/vuoto.gif');
	};
	function scambio2(div, img) {
		for (var i=5; i<=10; i++) { GetE('scambiotxt' + i).style.display = 'none'; };
		GetE('scambiotxt' + div).style.display = 'block';
		GetE('scambioimg2').src = (img != '' ? img : 'images/vuoto.gif');
	};
	function scambio3(div, img) {
		GetE('scambioimg3').src = (img != '' ? img : 'images/vuoto.gif');
	};
	function scambio4(div, img) {
		GetE('scambioimg4').src = (img != '' ? img : 'images/vuoto.gif');
	};
	function scambioTMP(div, img) {
		var tmp_inizio	= 1;
		var tmp_fine	= 5;
		var tmp_img		= 'scambioimg';
		
		if (div > tmp_fine) {
			tmp_inizio	= 6;
			tmp_fine	= 10;
			tmp_img		= 'scambioimg2';
		};
		
		for (var i=tmp_inizio; i<=tmp_fine; i++) { GetE('scambiotxt' + i).style.display = 'none'; };
		GetE('scambiotxt' + div).style.display = 'block';
		GetE(tmp_img).src = (img != '' ? img : 'images/vuoto.gif');
	};
	function start() {
		for (var i=0; i<document.links.length; i++) {
			if (document.links[i].className == 'blank') { document.links[i].target = '_blank'; };
		};
		initializemarquee();
	};
/*****************************************************************
* Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
*****************************************************************/
	var delayb4scroll	= 800;
	var marqueespeed	= 1;
	var pauseit			= 1;
	var copyspeed		= marqueespeed
	var pausespeed		= (pauseit == 0) ? copyspeed : 0;
	var actualheight	= '';
	
	function scrollmarquee()		{ if (parseInt(cross_marquee.style.top) > (actualheight * (-1) + 8)) { cross_marquee.style.top = parseInt(cross_marquee.style.top) - copyspeed + 'px'; } else { cross_marquee.style.top = parseInt(marqueeheight) + 8 + 'px'; }; };
	function initializemarquee()	{ if (GetE('vmarquee')) { cross_marquee = GetE('vmarquee'); cross_marquee.style.top = 0; marqueeheight = GetE('marqueecontainer').offsetHeight; actualheight = cross_marquee.offsetHeight; if (window.opera || navigator.userAgent.indexOf('Netscape/7')!=-1) { cross_marquee.style.height = marqueeheight + 'px'; cross_marquee.style.overflow = 'scroll'; return; }; setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll); }; };
//-->