/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
// for the special headers
var header=new Array()
//header[0] = '<p class=header>World AIDS Day is dedicated to raising awareness of the AIDS pandemic, which is caused by the spread of HIV infection.</p>';
//header[0] = "<p class=header>Today in 1884, the Washington Monument was completed.  Provided are few scans of the October 29th, 1796 issue of <i>Claypoole's</i> American Daily Advertifer where George Washington wrote to the Inhabitants of Shepherd's Town, and its vicinity.</p>";
//header[0] = "<p class=header>Stan Lee, born Stanley Martin Lieber on December 28, 1922, is a comic-book writer, editor, publishing executive, and a film and television producer. He is probably best known for being the cocreator of comic book superheros such as Spider-Man, the Hulk, Daredevil, the X-Men, Iron Man, and the Fantastic Four.</p>";
//header[0] = "<p class=header>On January 26, 1988, Andrew Lloyd Webber's The Phantom of the Opera has its first performance on Broadway at the Majestic Theatre in New York.</p>";
//header[0] = "<p class=header>According to weather folklore, if a groundhog emerges from its burrow and is not scared by its shadow, Winter will end soon; if a groundhog sees it shadow and retreats back into its burrow Winter will continue for six more weeks.</p>";
header[0] = "<p class=header>The Library is having its first annual Valentine's Day Video Valentine contest. First place video will win $100 donated to Relay for Life in their name. For more information, read the <a href=/libweb/services/libtech/video_val/ class=header>Video Valentine 2008 rules</a>.</p>";

//var header_alt=new Array()
//header_alt[0] = "<p class=header>On January 1, 1818, Mary Shelley&#39;s <i>Frankenstein, or, The Modern Prometheus</i> was first published. Provided is a link to the audiobook, made possible by LibriVox.</p>";
//var header_alt=new Array()
//header_alt[0] = "<p class=header>According to weather folklore, if a groundhog emerges from its burrow and is not scared by its shadow, Winter will end soon; if a groundhog sees it shadow and retreats back into its burrow Winter will continue for six more weeks.</p><p class=header><a href=http://www.imdb.com/title/tt0107048 class=header><b>Phil Connors:</b> Excuse me, where is everyone going?<br /><b>Fan on Street:</b> To Gobbler's Knob. It's Groundhog Day.<br/><b>Phil Connors:</b> It's still just once a year, right?</a></p>";


//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a target="_blank" href="http://libproxy.shepherd.edu:2048/login?url=http://search.ebscohost.com">EbscoHost</a>'
menu2[3]='<a target="_blank" href="http://libproxy.shepherd.edu:2048/login?url=http://infotrac.galegroup.com/itweb/shep63558?db=LitRC">Gale LRC</a>'
menu2[4]='<a target="_blank" href="http://libproxy.shepherd.edu:2048/login?url=http://www.jstor.org/search/AdvancedSearch">JSTOR</a>'
menu2[5]='<a target="_blank" href="http://libproxy.shepherd.edu:2048/login?url=http://www.lexisnexis.com/us/lnacademic">LexisNexis Academic</a>'
menu2[6]='<a target="_blank" href="http://libproxy.shepherd.edu:2048/login?url=http://muse.jhu.edu/search/search.cgi">Project Muse</a>'
menu2[7]='<a target="_blank" href="http://libproxy.shepherd.edu:2048/login?url=http://firstsearch.oclc.org/dbname=WorldCat;FSIP">WorldCat</a>'

var menuwidth='165px' //default menu width
//var menubgcolor='lightyellow'  //menu bgcolor
var menubgcolor='white'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
  document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
  var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
  var parentEl=what.offsetParent;
  while (parentEl!=null){
    totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
    parentEl=parentEl.offsetParent;
  }
  return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
  if (ie4||ns6)
    dropmenuobj.style.left=dropmenuobj.style.top="-500px"
  if (menuwidth!=""){
    dropmenuobj.widthobj=dropmenuobj.style
    dropmenuobj.widthobj.width=menuwidth
  }
  if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
    obj.visibility=visible
  else if (e.type=="click")
    obj.visibility=hidden
}

function iecompattest(){
  return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
  var edgeoffset=0
  if (whichedge=="rightedge"){
    var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
    dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
    if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
      edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
  }
  else{
    var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
    var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
    dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
    if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
      edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
      if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
        edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
    }
  }
  return edgeoffset
}

function populatemenu(what){
  if (ie4||ns6)
  dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
  if (window.event) event.cancelBubble=true
  else if (e.stopPropagation) e.stopPropagation()
    clearhidemenu()
    dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
    populatemenu(menucontents)

  if (ie4||ns6){
    showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
    dropmenuobj.x=getposOffset(obj, "left")
    dropmenuobj.y=getposOffset(obj, "top")

    //mine -- allow for horizontal shift
    dropmenuobj.x = dropmenuobj.x + 60
    
    dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
    dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
  }

  return clickreturnvalue()
}

function clickreturnvalue(){
  if (ie4||ns6) return false
  else return true
}

function contains_ns6(a, b) {
  while (b.parentNode)
    if ((b = b.parentNode) == a)
    return true;
  return false;
}

function dynamichide(e){
  if (ie4&&!dropmenuobj.contains(e.toElement))
    delayhidemenu()
  else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
    delayhidemenu()
}

function hidemenu(e){
  if (typeof dropmenuobj!="undefined"){
    if (ie4||ns6)
      dropmenuobj.style.visibility="hidden"
  }
}

function delayhidemenu(){
  if (ie4||ns6)
    delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
  if (typeof delayhide!="undefined")
    clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
  document.onclick=hidemenu
