//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  null, null);
	menu.addItem("casinoid", "Casinos", "Casinos",  null, null);
	menu.addItem("gamesid", "Other Games", "Other Games",  null, null);
	menu.addItem("freeid", "Free Games", "Free Games",  null, null);
	menu.addItem("tipsid", "Tips & Tricks", "Tips & Tricks",  null, null);
	menu.addItem("rulesid", "Rules", "Rules",  null, null);

	menu.addSubItem("homeid", "Greedyhog-Blackjack", "Greedyhog-Blackjack",  "http://www.greedyhog-blackjack.com/");
	
	menu.addSubItem("casinoid", "Blackjack Casinos", "Blackjack Casinos",  "http://www.greedyhog-blackjack.com/blackjack_casinos.html");
	
	menu.addSubItem("gamesid", "Greedyhog.com", "Greedyhog.com",  "http://www.greedyhog.com/");
	
	menu.addSubItem("freeid", "Greedyhog-Games", "Greedyhog-Games",  "http://www.greedyhog-games.com/");
	
	menu.addSubItem("tipsid", "Blackjack Tips", "Blackjack Tips",  "http://www.greedyhog-blackjack.com/blackjack_tips.html");
	
	menu.addSubItem("rulesid", "Blackjack Rules", "Blackjack Rules",  "http://www.greedyhog-blackjack.com/blackjack_rules.html");

	menu.showMenu();
}