<!--
// DYNAMIC MENUS - DATA
// EDIT THE FOLLOWING TO DEFINE THE NAVIGATION BUTTONS AND THEIR SUBMENUS
// Davide Andrea 11/15/2006


// Submenu text and link
// One line per submenu item: a dash, its text, a tab character, the link, and a back-slash: "-name[tab]link\"
// Separate the items for each button with a caret and backslash:"^\"
// If a button has no submenus, just go right to the next "^\"
SubMenuDataStr="\
^\
^\
+High (128 MP3)	http://stream.kgnu.net:8000/KGNU_live_high.mp3.m3u\
+Medium (64 MP3)	http://stream.kgnu.net:8000/KGNU_live_med.mp3.m3u\
+Low (32 MP3)	http://stream.kgnu.net:8000/KGNU_live_low.mp3.m3u\
+More Streams	/ht/listencomp.html\
+Podcasts	/ht/listencomp.html\
+Stream Info	/ht/listencomp.html\
+Using Your Radio	/ht/listenradio.html\
^\
+Recent Shows	/shows.php\
+By Show	/schedule.html\
^\
+Join Now!	https://kgnu.org/ht/quickjoin.html\
+Membership	/ht/membership.html\
+Workplace giving	/ht/workplace.html\
+Denver 1390 signal	/ht/signalfund.html\
+Building fund	/ht/buildingfund.html\
+Underwriting	/ht/underwriting.html\
+Donations	/ht/donatestuff.html\
^\
^\
+KGNU goods	/ht/buy.html\
^\
+Notices, PSAs	/ht/submitnotices.html\
+Music, books	/ht/submitmusicbooks.html\
+News items, releases	/ht/submitnews.html\
+Comments	/ht/submitcomments.html\
+Program Guide ads	/ht/pgmguide.html#submit\
^\
+By phone	/ht/phone.html\
+By mail	/ht/mail.html\
+By email	/ht/email.html\
+ListServe	/ht/listserve.html\
+In person	/ht/visit.html\
+Directory	/cgi-bin/directory.py\
^\
+ISDN services	/ht/isdn.html\
+Audio copies	/ht/copies.html\
+Program Guide	/ht/pgmguide.html\
^\
+Our mission	/ht/mission.html\
+Our board	/ht/board.html\
+Our committees	/ht/committees.html\
+Our staff	/ht/staff.html\
+Our volunteers	/ht/volunteers.html\
+Our signal	/ht/signal.html\
+Our building	/ht/building.html\
+Our finances	/ht/finances.html\
+Our supporters	/ht/supporters.html\
+Our history	/ht/history.html\
+Our pictures	/ht/gallery.html\
+Our links	/ht/links.html\
^\
+Concert	/ht/concertcalonline.html\
+KGNU presents	/ht/presentsonline.html\
+Arts calendar	/ht/artscalonline.html\
+Events calendar	/ht/eventscalonline.html\
+Bluegrass Hotline	/bluegrass/\
+Indian Voices	/indianvoices/newsletter.html\
^\
^\
^\
";


// File names of the buttons' images
ButtonFolder = "../btns/";	// Folder with images for the buttons
FilePrefixNormal = "btn";	// Prefix of the file names with the normal buttons' images
FilePostfixNormal = ".gif";	// Postfix of the file names with the normal buttons' images
FilePrefixHiLite = "btn";	// Prefix of the file names with the high-lighted buttons' images
FilePostfixHiLite = "h.gif";// Postfix of the file names with the high-lighted buttons' images
// ID names of the buttons in the web page
BtnID_Prefix = "btn";	// Prefix of ID names
// Button size
BtnWidth = 120
BtnHeight = 22

// Location of a submenu with respect to its button [pixels]
SubMenuDeltaX = 100;	// Horizontal offset (+ moves to the left)
SubMenuDeltaY = 5;		// Vertical offset (+ moves down)
// Width of a submenu
SubMenuWidth = 120;		// This has to be at least as big as the width, so that when the submenu is hidden to the left of the window, none of it shows

// Misc
SubMenuPersistTime = 1000;	// How long a SubMenu remains visible after the mouse exits it [ms]

-->
