// JavaScript Document

// ##IMG_GALLERY##
function DoZoom(id,img,alt)
{
	document.getElementById('img_zoom').src = 'media/immagini/' + img;
	document.getElementById('div_zoom').innerHTML = alt;
}

// resize BOX imgs
	window.onload = function() {
	if (document.getElementById("box")) {
		document.getElementById("box").style.width = document.getElementById("box").offsetWidth;
	}
}

