// Initialise the effects
		var enoteca, vendita, magazzino;
		
		window.onload = function() {
			enoteca = new fx.Combo('enoteca', {height: true, opacity: true, duration: 500});
			vendita = new fx.Combo('vendita', {height: true, opacity: true, duration: 500});
			magazzino = new fx.Combo('magazzino', {height: true, opacity: true, duration: 500});
												
			// Hide them to begin with
			enoteca.hide();
			vendita.hide();
			magazzino.hide();
			initLightbox();
			tinyScrolling.init();
}
