/*
Tabs Menu (mouseover)- By Dynamic Drive
For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
This credit MUST stay intact for use
*/

var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 
submenu[0]='Personal information about Sophia Myles such as <em>Quick Facts</em>, <em>Biography</em>, <em>Trivia</em>'

submenu[1]='Discover the various projects, including Movies, Television, TV-Series, Music Videos and more'

submenu[2]='The largest collection of Sophia Myles interviews and articles - read interviews from as far back as 1999'

submenu[3]='Enjoy browsing through our collection of Sophia Myles pictures - everything from screencaptures and scans to photos of public appearances'

submenu[4]='See Sophia Myles in action and hear her speak - in our growing collection of video and audio clips'

submenu[5]='Join the Sophia discussion! Every new member is welcome!'

submenu[6]='Download some icons featuring Sophia Myles, vote in our Poll...'

submenu[7]='Find out who is behind <em>Absolutely Sophia Myles</em>, see previous site layouts and read the disclaimer'

submenu[8]='Visit other websites with Sophia Myles related information, visit our affiliates and more world wide web stuff'

submenu[9]='Return to the main site - and browse our <em>News and Updates</em> archives'


//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}