					function getObject(objectId) {
					    // cross-browser function to get an object's style object given its
					    if(document.getElementById && document.getElementById(objectId)) {
						// W3C DOM
						return document.getElementById(objectId);
					    } else if (document.all && document.all(objectId)) {
						// MSIE 4 DOM
						return document.all(objectId);
					    } else if (document.layers && document.layers[objectId]) {
						// NN 4 DOM.. note: this won't find nested layers
						return document.layers[objectId];
					    } else {
						return false;
					    }
					} // getStyleObject	
					
					var oggetto = "";
					var oggetto2 = "";
					var step = 0;

					function low(which2){
						intervallo=setInterval("lowlightit()",50)
					}
					function high(which2){

						intervallo=setInterval("highlightit()",50)
					}
					function lowlightit(){
						if (oggetto.filters.alpha.opacity>0)
							oggetto.filters.alpha.opacity-=10
						else if (window.intervallo){
							clearInterval(intervallo);
						}
					}
					function highlightit(){
						oggetto.style.visibility = 'visible';
						if (oggetto.filters.alpha.opacity<100){
							oggetto.filters.alpha.opacity += 10;
						/*	numero= Math.round(oggetto.style.marginLeft.replace(/px/,""))*1;
							oggetto.style.marginLeft = numero + 10;
						*/	
							}
						else if (window.intervallo)
							clearInterval(intervallo)
					}
					function dentro(which2,testo,colore,margin)
					{
							oggetto=getObject(which2);
							step = Math.round(margin/10);
							oggetto.style.borderLeft='75px solid '+colore;
							oggetto.style.paddingLeft='10px';
							oggetto.style.marginLeft='30%';
							high(oggetto);
							oggetto.innerHTML =testo;
					}
					function fuori(which2,testo)
					{
							sfondo = getObject('center');
						//	sfondo.style.backgroundimage= "url('img/css/ellisse_sf.gif')";
							oggetto=getObject(which2);
							if (window.intervallo)
								clearInterval(intervallo);
							oggetto.filters.alpha.opacity = 0;	
							oggetto.innerHTML ="";
								
					}
					function cambia(img,val,didascalia){
						window.document.immagine.src=val;
						document.all.dida.innerHTML =didascalia;
					}
					