// Initialise the effects
var kvm, rack, ip, extender, monitor, usb, serial, audio, acc, cable, arm, component;

window.onload = function() {
	kvm = new fx.Combo('kvm', {height: true, opacity: true, duration: 500});
	rack = new fx.Combo('rack', {height: true, opacity: true, duration: 500});
	ip = new fx.Combo('ip', {height: true, opacity: true, duration: 500});
	extender = new fx.Combo('extender', {height: true, opacity: true, duration: 500});
	monitor = new fx.Combo('monitor', {height: true, opacity: true, duration: 500});
	usb = new fx.Combo('usb', {height: true, opacity: true, duration: 500});
	serial = new fx.Combo('serial', {height: true, opacity: true, duration: 500});
	audio = new fx.Combo('audio', {height: true, opacity: true, duration: 500});
	acc = new fx.Combo('acc', {height: true, opacity: true, duration: 500});
	cable = new fx.Combo('cable', {height: true, opacity: true, duration: 500});
	arm = new fx.Combo('arm', {height: true, opacity: true, duration: 500});
	component = new fx.Combo('component', {height: true, opacity: true, duration: 500});
	
	// Hide them to begin with
	kvm.hide();
	rack.hide();
	ip.hide();
	extender.hide();
	monitor.hide();
	usb.hide();
	serial.hide();
	audio.hide();
	acc.hide();
	arm.hide();
	component.hide();
}

