

/*
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 = Coolstreams
submenu[0]='<font size="2" face="arial"><b><a href="http://musicsojourn.com/Cat/Alt/Streams/A80-00_Stream.htm">Alt80-00</a> | <a href="http://musicsojourn.com/Cat/Alt/Streams/AAA_Stream_01.htm">Alt Aspects</a> | <a href="http://musicsojourn.com/Cat/AmbNA/Streams/AC_Stream.htm">Ambient Caverns</a> | <a href="http://musicsojourn.com/Cat/AmbNA/Streams/CoolAge1.htm">Cool Age</a> | <a href="http://musicsojourn.com/Cat/AmbNA/Streams/CoolAge_THEMES.htm">Cool Age THEMES</a> | <a href="http://musicsojourn.com/Cat/AmbNA/Streams/MRI1.htm">MRI</a> | <a href="http://musicsojourn.com/Cat/AmbNA/Streams/TC_Stream.htm">Timeless Canyons Archive</a> | <a href="http://musicsojourn.com/Cat/Celt/Streams/CoolCeltic1.htm">Cool Celtic</a> | <a href="http://musicsojourn.com/Cat/Folk/Streams/CHS1.htm">Coffee House</a> | <a href="http://musicsojourn.com/Cat/Folk/Streams/FRS1.htm">Folk Rock Cafe</a> | <a href="http://musicsojourn.com/Cat/Jazz/Streams/JM0.htm">Jazz Masters</a> | <a href="http://musicsojourn.com/Cat/Oldies/Streams/LOR1.htm">Lost Oldies Revival</a> | <a href="http://musicsojourn.com/Cat/Prog/Streams/NSS.htm">Nightshades Prog</a> | <a href="http://musicsojourn.com/Cat/Prog/Streams/CRS1.htm">Retro Rock Adventures</a> | <a href="http://musicsojourn.com/Cat/Streams/COMPLETE.htm">Complete Sojourn</a></b></font>'

/*
These aae the POD ON DEMAND MENUS
*/

//submenu 1 = POD Alternative Group
submenu[1]='<font size="2" face="arial"><b>````````| <a href="http://musicsojourn.com/POD/Alt/A80/index.htm">Alt80-00</a> | <a href="http://musicsojourn.com/POD/Alt/AA/index.htm">Alt Aspects</a> | <a href="http://musicsojourn.com/POD/Alt/OS/index.htm">Outsight Radio Interviews</a> | </b></font>'

//submenu 2 = POD Ambient Group
submenu[2]='<font size="2" face="arial"><b>``````````| <a href="http://musicsojourn.com/POD/Ambient/AC/index.htm">Ambient Caverns</a> | <a href="http://musicsojourn.com/POD/Ambient/TC/index.htm">Timeless Canyons</a> | '

//submenu 3 = POD Arts Group
submenu[3]='<font size="2" face="arial"><b>`````````````````````````````````````````````| <a href="http://musicsojourn.com/Playlists/Arts/index.htm"> The Arts</a> | </b></font>'

//submenu 4 = POD Celtic Group
submenu[4]='<font size="2" face="arial"><b>``````````````````````````````````````````````````| <a href="http://musicsojourn.com/POD/Celtic/CC/index.htm">Celtic Currents</a> | <a href="http://musicsojourn.com/POD/Celtic/CR/index.htm"> Celtic Rock & Reel</a> | </b></font>'

//submenu 5 = POD Comedy Group
submenu[5]='<font size="2" face="arial">````````````````````````````````````````````````````````````````````````|<b><a href="http://musicsojourn.com/Playlists/Specialty/index.htm">Comedy Novelty Specials</a> | </b></font>'

//submenu 6 = POD Folk Group
submenu[6]='<font size="2" face="arial"><b>````````````````````````````````````````````````````````````````````| <a href="http://musicsojourn.com/POD/Celtic/CC/index.htm"> Celtic Currents</a> | <a href="http://musicsojourn.com/POD/Folk/CH/index.htm">Coffee House</a> | <a href="http://musicsojourn.com/POD/Folk/FR/index.htm">Folk Rock Cafe</a> | </b></font>'

//submenu 7 = POD Jazz Group
submenu[7]='<font size="2" face="arial"><b>``````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````| <a href="http://musicsojourn.com/Cat/Jazz/Streams/JM0.htm">Jazz Masters CoolStream</a> | </b></font>'

//submenu 8 = POD Popular Group
submenu[8]='<font size="2" face="arial"><b>```````````````````````````````````````````````````````````````````````````| <a href="http://musicsojourn.com/Playlists/Specialty/Producers/Paul_Ingles/index.htm"> Paul Ingles Features</a> | <a href="http://musicsojourn.com/POD/Oldies/SW/index.htm"> Soul of The Web</a> | <a href="http://musicsojourn.com/Playlists/LOR/index.htm">Lost Oldies Revival</a> | </b></font>'

//submenu 9 = POD Rock Prog Group
submenu[9]='<font size="2" face="arial"><b>```````````````````````````````````````````````| <a href="http://musicsojourn.com/POD/Prog/NSP/index.htm"> Nightshades Prog</a> | <a href="http://musicsojourn.com/NewVols/Prog/Canvas/index.htm"> Canvas Prog Hour</a>  |  <a href="http://musicsojourn.com/Playlists/Specialty/Producers/Paul_Ingles/index.htm"> Paul Ingles Features</a> | <a href="http://musicsojourn.com/POD/Prog/RRA/index.htm">Retro Rock Adventures</a> | </b></font>'




//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=2000

/////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;
}

