$(document).ready
			(function () 
			{ inizializzaGalleria();});

function inizializzaGalleria()
{
	$("#galleryShow").mbGallery( {
				galleryMaxWidth:500,
				galleryWidth:400,
				galleryHeight:300,
				galleryColor:"#333",
				galleryFrameBorder: 12,
				galleryFrameColor:"#fff",

				thumbStripPos: "right",
				thumbStripWidth:250,
				thumbSelectColor: "#fff",
				thumbOverColor : "yellow",
				thumbStripColor: "#333333",
				thumbsBorder: 2,
				thumbHeight:50,
				headerOpacity: .8,

				labelColor: "#B0A900",
				labelColorDisactive:"#B0A900",
				labelTextColor: "#ffffff",
				labelTextSize:"11px",
				labelHeight:20,

				startFrom:"random",
				fadeTime: 500,
				autoSlide:true,
				autoSize : true,
				slideTimer: 6000,
				iconFolder: "images/element",
				startTimer:0
			}
				)

}		
function galleria(valore)
{
	if(valore!=0)
	{
	$("#galleryShow").remove();
	$.post("function.inc.php",{azione:"showGallery", valore:valore}, function(data){ $("#contentGallery").html(data);inizializzaGalleria();});
	}
}
