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

