// Initialise the effects
		var aperitivi, amari, porto, vodka, gin, tequila, rum, mignon, wisky, grappa, vari, brandy, cognac;
		
		window.onload = function() {
			aperitivi = new fx.Combo('aperitivi', {height: true, opacity: true, duration: 500});
			amari = new fx.Combo('amari', {height: true, opacity: true, duration: 500});
			porto = new fx.Combo('porto', {height: true, opacity: true, duration: 500});
			vodka = new fx.Combo('vodka', {height: true, opacity: true, duration: 500});
			gin = new fx.Combo('gin', {height: true, opacity: true, duration: 500});
			tequila = new fx.Combo('tequila', {height: true, opacity: true, duration: 500});
			rum = new fx.Combo('rum', {height: true, opacity: true, duration: 500});
			mignon = new fx.Combo('mignon', {height: true, opacity: true, duration: 500});
			wisky = new fx.Combo('wisky', {height: true, opacity: true, duration: 500});
			grappa = new fx.Combo('grappa', {height: true, opacity: true, duration: 500});
			vari = new fx.Combo('vari', {height: true, opacity: true, duration: 500});
			brandy = new fx.Combo('brandy', {height: true, opacity: true, duration: 500});
			cognac = new fx.Combo('cognac', {height: true, opacity: true, duration: 500});
			tinyScrolling.init();
						
			// Hide them to begin with
			aperitivi.hide();
			amari.hide();
			porto.hide();
			vodka.hide();
			gin.hide();
			tequila.hide();
			rum.hide();
			mignon.hide();
			wisky.hide();
			grappa.hide();
			vari.hide();
			brandy.hide();
			cognac.hide();
}
