//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("serveid", "We Serve you", "Here is How",  null, null);
menu.addItem("findjobid", "Find A Job", "News Sites",  null, null);
menu.addItem("advertiseid", "Advertise Your Job", "ATopJob Ads",  null, null);
menu.addItem("postresumeid", "Submit Your Resume", "Profile form and attatch your resume",  null, null);
menu.addItem("postjob", "Post A Job", "Position", null, null);
menu.addItem("addmeid", "Home", "Home Page", null, null);
menu.addItem("referid", "About Us", "Our Company", null, null);
menu.addItem("linkid", "Links", "Reference and Links", null, null);

// menu.addSubItem("serveid", "From The Begining", "Founded in 1973",
// "http://www.atopjob.com/company.htm", "_blank");
// menu.addSubItem("serveid", "Our Guarantee", "Know why we serve YOU",  // "http://www.atopjob.com/objectives2.htm", "_blank");
// menu.addSubItem("serveid", "Our Objectives", "Quality Counts",  
// "http://www.atopjob.com/guarantee.htm", "_blank");
	

// menu.addSubItem("findjobid", "Physicians", "Physician Jobs",  
// "http://www.atopjob.com/jobsearch.htm", "");

menu.addSubItem("findjobid", "Physician Assistants", "PA Job Samples",  "http://www.atopjob.com/clk_mgr/clickmanager.cgi?dl=http://www.atopjob.com/jobsamples_pa.htm", "");
menu.addSubItem("findjobid", "Nurse Practitioners", "NP Job Samples",  "http://www.atopjob.com/clk_mgr/clickmanager.cgi?dl=http://www.atopjob.com/jobsamples_np.htm", "");
menu.addSubItem("findjobid", "All Job Samples", "Job Samples",  
"http://www.atopjob.com/clk_mgr/clickmanager.cgi?dl=http://www.atopjob.com/jobsamples.htm", "");

menu.addSubItem("advertiseid", "ATopJob Advertising", "Featured Jobs", 
"http://www.atopjob.com/clk_mgr/clickmanager.cgi?dl=http://www.atopjob.com/featured.htm", "");
menu.addSubItem("advertiseid", "Contact", "Information", 
"http://www.atopjob.com/clk_mgr/clickmanager.cgi?dl=http://www.atopjob.com/aboutus.htm", "");

menu.addSubItem("postjob", "Position", "Employer",
"http://www.atopjob.com/employerprofile.htm", "");

menu.addSubItem("addmeid", "Home Page", "Home",
"http://www.atopjob.com", "");

menu.addSubItem("referid", "About Us", "Our Company",  
"http://www.atopjob.com/aboutus.htm", "");
menu.addSubItem("referid", "Our Guarantee", "We Serve You",  
"http://www.atopjob.com/objectives2.htm", "_blank");

menu.addSubItem("linkid", "Reference and Links", "Links", 
"http://www.atopjob.com/links.htm", "");


// menu.addSubItem("postresumeid", "Physician", "Submit Your Resume/CV Here",  // "http://www.atopjob.com/physicianprofile.htm", "");
menu.addSubItem("postresumeid", "Physician Assistant", "Submit Your Resume/CV Here",  "http://www.atopjob.com/physicianassistantprofile.htm", "");
menu.addSubItem("postresumeid", "CVT", "Submit Your Resume/CV Here",  "http://www.atopjob.com/personalprofile.htm", "");
// menu.addSubItem("postresumeid", "Nurse", "Submit Your Resume/CV Here",  
//"http://www.atopjob.com/nurseprofile.htm", "");
// menu.addSubItem("postresumeid", "Nurse Administrator-Specialist", "Submit Your Resume/CV Here", 
// "http://www.atopjob.com/nurseadmprofile.htm", "");
menu.addSubItem("postresumeid", "Nurse Practitioner", "Post Your Resume/CV Here",  "http://www.atopjob.com/nursepractitionerprofile.htm", "");
menu.addSubItem("postresumeid", "CRNA", "Submit Your Resume/CV Here",  "http://www.atopjob.com/crnaprofile.htm", "");
menu.addSubItem("postresumeid", "Other", "Submit Your Resume/CV Here",  "http://www.atopjob.com/personalprofile.htm", "");




	

	menu.showMenu();
}

