//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);
	
menu = new Menu(); 	
menu.addItem("webmasterid", "Home", "Home",  null, null); 	
menu.addItem("newsid", "Movies", "Movies",  null, null); 	
menu.addItem("freedownloadid", "Music", "Music",  null, null); 	
menu.addItem("searchengineid", "Apparel", "Apparel",  null, null); 	
menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);  	

menu.addSubItem("webmasterid", "Home", "Home",  "http://www.videosmusicandmore.com/", "");  	

menu.addSubItem("newsid", "Concerts", "Concerts",  "http://www.videosmusicandmore.com/Concerts.html", "");
menu.addSubItem("newsid", "Movie Articles", "Movie Articles",  "http://www.videosmusicandmore.com/MovieArticles.html", "");  
menu.addSubItem("newsid", "Westerns", "Westerns",  "http://www.videosmusicandmore.com/Westerns.html", "");   	

menu.addSubItem("freedownloadid", "Blues", "Blues",  "http://www.videosmusicandmore.com/Blues.html", ""); 
menu.addSubItem("freedownloadid", "Country-Western", "Country-Western",  "http://www.videosmusicandmore.com/Country-Western.html", ""); 
menu.addSubItem("freedownloadid", "Memorabilia/Collectables", "Memorabilia/Collectables",  "http://www.videosmusicandmore.com/Memorabilia.html", ""); 	
menu.addSubItem("freedownloadid", "Music Articles", "Music Articles",  "http://www.videosmusicandmore.com/MusicArticles.html", ""); 
menu.addSubItem("freedownloadid", "Rock", "Rock",  "http://videosmusicandmore.com/Rock.html", ""); 
menu.addSubItem("freedownloadid", "Alternative-Rock", " Alternative-Rock",  "http://www.videosmusicandmore.com/Alternative-Rock.html", ""); 	


menu.addSubItem("searchengineid", "Apparel", "Apparel",  "http://www.videosmusicandmore.com/Apparel.html", ""); 

menu.addSubItem("miscid", "Concert Tickets", "Concert Tickets",  "http://www.videosmusicandmore.com/Concert-Tickets.html", ""); 	
menu.addSubItem("miscid", "Memorabilia/Collectables", "Memorabilia/Collectables", "http://www.videosmusicandmore.com/Memorabilia.html", ""); 
menu.addSubItem("miscid", "Musical Instruments", "Musical Instruments", "http://www.videosmusicandmore.com/Musical-Instruments.html", ""); 	
menu.addSubItem("miscid", "Links", "Links",  "http://www.videosmusicandmore.com/Links.html", ""); 	
menu.addSubItem("miscid", "Business Directories", "Business Directories",  "http://www.domandirectories.com/", "");  	

menu.showMenu(); } 
