function init()
{
	jQuery(".opaco").each
	(
		function(index, node)
		{
			node.id = "foto_" + index;
			node.onmouseover = function() { evidenzia(true, node); }
			node.onmouseout = function() { evidenzia(false, node); }
		}
	);
	jQuery(".prev")[0].onclick = function() { setTimeout(init, 150); }
	jQuery(".next")[0].onclick = function() { setTimeout(init, 150); }
}
init();
