window.onload = function()
{
	var sfondi = new Array(); //viene creato l'array
	sfondi[0]="url('img/tab_default.jpg') no-repeat center 0";
	sfondi[1]="url('img/tab_targato.jpg') no-repeat center 0";
	sfondi[2]="url('img/tab_strumentale.jpg') no-repeat center 0";
	sfondi[3]="url('img/tab_immobiliare.jpg') no-repeat center 0";
	sfondi[4]="url('img/tab_aero.jpg') no-repeat center 0";


	var tasti = document.getElementsByTagName('a');
	
 	for(i=0; i < tasti.length; i++)
	{
	  tasto = tasti.item(i);
	  if(tasto.className=="gallery")
	  {
		tasto.onmouseover = function() 
		{
			temp = this.id.substr(6,1);
			document.getElementById('show_def').style.background=sfondi[temp];
			document.getElementById('show_def').style.background=sfondi[temp]
			return;
		}
		
		tasto.onmouseout = function() 
		{
			document.getElementById('show_def').style.background=sfondi[0];
			return;
		}
	  }
 	}
	return;
}
