// Initialise the effects
  var kvm, rack, ip, extender, monitor, multi, usb, serial, acccesory, cable, arm, audio;
		
  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});
    multi = new fx.Combo('multi', {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});
    acccesory = new fx.Combo('acccesory', {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});
    audio = new fx.Combo('audio', {height: true, opacity: true, duration: 500});
			
// Hide them to begin with
  kvm.hide();
	rack.hide();
  ip.hide();
  monitor.hide();
  multi.hide();
  usb.hide();
  serial.hide();
  acccesory.hide();
  cable.hide();
  arm.hide();
  audio.hide();
  }
