function showToolbar()
{
// This is the Property of Joshinyou.com 
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("female", "J O S H I N Y O U |", "www.Joshinyou.com",  null, null);
	menu.addItem("annie", " Entertainment |", "Entertainment",  null, null);
	menu.addItem("male", " Josh Downloads |", "Josh Downloads",  null, null);
	menu.addItem("deep", " Super Models |", "Super Models",  null, null);
	menu.addItem("partners", " Josh Latest |", "Josh Latest",  null, null);	
	menu.addItem("extras", " Extras |", "Extras",  null, null);      	
		
	menu.addSubItem("female", "Home", "Home",  "home.html");
	menu.addSubItem("female", "About Me", "Gurdeep Bahra",  "aboutme.html");
	menu.addSubItem("female", "Contact Us", "DeepOnline InfoTech",  "contactus.html");
			
	menu.addSubItem("annie", "Aishwarya Rai", "Aishwarya Rai",  "aishwarya.html");
	menu.addSubItem("annie", "Jennifer Lopez", "J.Lo",  "jennifer.html");
	menu.addSubItem("annie", "Katrina Kaif", "Katrina Kaif",  "katrinakaif.html");		
	menu.addSubItem("annie", "Yana Gupta", "Yana Gupta",  "yanagupta.html");
	menu.addSubItem("annie", "Entertainment", "Entertainment",  "comingsoon.html"); 
	
	menu.addSubItem("male", "Music", "Music",  "music.html");
	menu.addSubItem("male", "Free Mp3", "Free Mp3",  "mp3.html");
	menu.addSubItem("male", "Downloads", "Downloads",  "downloads.html");
	
	menu.addSubItem("deep", "Models Main", "Models Main",  "models.html");
	menu.addSubItem("deep", "Aishwarya Rai", "Aishwarya Rai",  "aishwarya.html");
	menu.addSubItem("deep", "Yana Gupta", "Yana Gupta",  "yanagupta.html");
	menu.addSubItem("deep", "Katrina Kaif", "Katrina Kaif",  "katrinakaif.html");	

	menu.addSubItem("partners", "Today News", "Today News",  "news.html");
	menu.addSubItem("partners", "Recent News", "Recent News",  "news.html");     
	menu.addSubItem("partners", "Computer News", "Computer News",  "computernews.html");
	
	menu.addSubItem("extras", "Free WebPage ", "Josinyou.com/you",  "freepage.html");	
	menu.addSubItem("extras", "DeepOnline.Net ", "DeepOnline.Net",  "deeponline.html");
	
menu.showMenu();	
}