//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", "Go Gulf!", "Going Gulf was never so easy",  null, null);
	menu.addItem("newsid", "Candidate Zone", "Candidates! We are here to help you",  null, null);
	menu.addItem("Homepageid", "Recruiters Zone and Home", "Back to Home Page",  null, null);
	menu.addItem("searchengineid", "Talent Hunt Group", "Talent Hunt Pvt Ltd",  null, null);


	menu.addSubItem("webmasterid", "- Online payment", "Go Gulf- Online payment",  "blast.html", "");
	menu.addSubItem("webmasterid", "-All modes", "Go Gulf- All payment modes",  "chalogulf.html", "");
        menu.addSubItem("webmasterid", "", "Web Monkey",  "", "_blank");

	menu.addSubItem("newsid", "Go Gulf", "Go Gulf",  "blast.html", "");
        menu.addSubItem("newsid", "F.A.Qs", "Frequently Asked Questions",  "faq.html", "");
	menu.addSubItem("newsid", "100% Guarantee", "We are so sure of the process.",  "guarantee.html", "");
	menu.addSubItem("newsid", "Recruiters", "Recruiters",  "list.html", "");
        menu.addSubItem("newsid", "Success Stories", "Success Speaks",  "testimonial.html", "");
	menu.addSubItem("newsid", "Affiliate Program", "Make Money while you help your friends",  "affiliate.html", "");
	menu.addSubItem("newsid", "", "News.com",  "http://news.com", "");
	

	menu.addSubItem("Homepageid", "Home Page", "Back to Home Page",  "index.html", "");
	menu.addSubItem("Homepageid", "Companies Zone", "Companies Welcome",  "cos.html", "");
        menu.addSubItem("Homepageid", "", "Companies Welcome",  "", "");

	menu.addSubItem("searchengineid", "About us", "GulfResumeBlaster.com",  "aboutus.htm", "");
	menu.addSubItem("searchengineid", "Contact us", "Talent Hunt P Ltd",  "contact.html", "");
	menu.addSubItem("searchengineid", "", "HotBot",  "", "");



	menu.showMenu();
}