/*
LIDD Consulting Website
Written by Ian Collier, Autumn/Winter 2008
This work copyright Ian Collier
Please do not copy or modified this work
without seeking the express permission of
the author beforehand.  Thank you
*/

// links script

// function to go to chosen link
function gothere() {
  // get the current selected index
  var idx=document.getElementById("selitem").selectedIndex;
  // get the destination link
  var link=document.getElementById("selitem").options[idx].value;
  // go to the link
  self.location="#"+link;
}
