
		// Initialise the effects
		var treasurer;
		var pad;
		var compliance;
		var npl;
		var pnl;
		var bma;
	
		
		window.onload = function() {
			treasurer = new fx.Combo('treasurer', {height: true, opacity: true, duration: 600});
			pad = new fx.Combo('pad', {height: true, opacity: true, duration: 600});
			compliance = new fx.Combo('compliance', {height: true, opacity: true, duration: 600});
			npl = new fx.Combo('npl', {height: true, opacity: true, duration: 600});
			pnl = new fx.Combo('pnl', {height: true, opacity: true, duration: 600});
			bma = new fx.Combo('bma', {height: true, opacity: true, duration: 600});
			
			// Hide them to begin with
			treasurer.hide();
			pad.hide();
			compliance.hide();
			npl.hide();
			pnl.hide();
			bma.hide();

		}
