// Initialise the effects
		var approach, staff, house;
		
		window.onload = function() {
			approach = new fx.Combo('approach', {height: true, opacity: true, duration: 500});
			graduation = new fx.Combo('graduation', {height: true, opacity: true, duration: 500});
			LBM = new fx.Combo('LBM', {height: true, opacity: true, duration: 500});
			staff = new fx.Combo('staff', {height: true, opacity: true, duration: 500});
			house = new fx.Combo('house', {height: true, opacity: true, duration: 500});
			
			// Hide them to begin with
			approach.hide();
			staff.hide();
			house.hide();
			graduation.hide();
			LBM.hide();
		
		}