function MenuSet()
{
var thisPage, theElement;
thisPage = location.href;
//alert(thisPage);
switch (thisPage) 
{

case "index.html":
  break

case "http://www.library.otago.ac.nz/billrobertson/catalogues_other.htm": 
  theElement = document.getElementById("researchclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/database.htm": 
  theElement = document.getElementById("researchclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/subj_guides.htm": 
  theElement = document.getElementById("researchclass"); 
  toggleMenu(theElement)
  break

case "http://mb4pz8vy2l.search.serialssolutions.com": 
  theElement = document.getElementById("researchclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/virtual_reference.htm": 
  theElement = document.getElementById("researchclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/hours.htm": 
  theElement = document.getElementById("aboutclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/staff.htm": 
  theElement = document.getElementById("aboutclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/art.htm": 
  theElement = document.getElementById("aboutclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/regulations.htm": 
  theElement = document.getElementById("aboutclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/material_classification.htm": 
  theElement = document.getElementById("aboutclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/floor_plans.htm": 
  theElement = document.getElementById("aboutclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/borrowing.htm": 
  theElement = document.getElementById("servicesclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/info_services.htm": 
  theElement = document.getElementById("servicesclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/reserves.htm": 
  theElement = document.getElementById("servicesclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/off_campus.htm":
  theElement = document.getElementById("servicesclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/online_forms.htm":
  theElement = document.getElementById("servicesclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/photocopying.htm": 
  theElement = document.getElementById("servicesclass"); 
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/computers.htm": 
  theElement = document.getElementById("servicesclass");
  toggleMenu(theElement)
  break

case "http://www.library.otago.ac.nz/billrobertson/contacts.htm": 
  theElement = document.getElementById("contactclass");
  toggleMenu(theElement)
  break

case "mailto:reference.billrobertson@otago.ac.nz?subject=Feedback/Question": 
  theElement = document.getElementById("contactclass");
  toggleMenu(theElement)
  
}

}
