function showList(id) {
	document.getElementById("tissue_submenu").style.visibility = 'hidden';
	document.getElementById("prod_submenu").style.visibility = 'hidden';
	document.getElementById("inn_submenu").style.visibility = 'hidden';
	document.getElementById(id).style.visibility = 'visible';
}

function hideList(id) {
	document.getElementById(id).style.visibility = 'hidden';
}

function s(el, v) {
	el.src = v;
}

var myimages=new Array();
var index = 0;

function preloadimages(){
	for (i=0;i<preloadimages.arguments.length;i++){
		myimages[index] = new Image();
		myimages[index].src = preloadimages.arguments[index];
		index++;
	}
}

preloadimages(
		'img/decor/svolgitore_it_s.gif',
		'img/decor/svolgitore_it_s.gif',
		'img/decor/unitaStampa_it_s.gif',
		'img/decor/goffratore_it_s.gif',
		'img/decor/ribobinatrice_it_s.gif',
		'img/decor/incollatore_it_s.gif',
		'img/decor/accumulatore_it_s.gif',
		'img/decor/troncatore_it_s.gif',
		'img/decor/tubiera_it_s.gif',		
		'img/decor/btn_igenica_it_s.gif',
		'img/decor/btn_industriale_it_s.gif',
		'img/decor/btn_asciugatutto_it_s.gif',
		'img/decor/btn_touchemboss_it_s.gif',
		'img/decor/btn_eject_it_s.gif',
		'img/decor/btn_kamaleon_it_s.gif',
		'img/decor/btn_kaleidon_it_s.gif',
		
		'img/decor/svolgitore_en_s.gif',
		'img/decor/svolgitore_en_s.gif',
		'img/decor/unitaStampa_en_s.gif',
		'img/decor/goffratore_en_s.gif',
		'img/decor/ribobinatrice_en_s.gif',
		'img/decor/incollatore_en_s.gif',
		'img/decor/accumulatore_en_s.gif',
		'img/decor/troncatore_en_s.gif',
		'img/decor/tubiera_en_s.gif',
		'img/decor/btn_igenica_en_s.gif',
		'img/decor/btn_industriale_en_s.gif',
		'img/decor/btn_asciugatutto_en_s.gif',
		'img/decor/btn_touchemboss_en_s.gif',
		'img/decor/btn_eject_en_s.gif',
		'img/decor/btn_kamaleon_en_s.gif',
		'img/decor/btn_kaleidon_en_s.gif'
);

function selectArea(area, ref) {
	immagine = document.getElementById('img_map');
	label = document.getElementById('img_label');
	box = document.getElementById(ref);
	if(area!='') {
		immagine.src = 'img/mappe/'+area+'.jpg';
		box.style.display = 'block';
	} else {
		immagine.src = 'img/mappe/main.jpg';		
		box.style.display = 'none';		
	}
}