//But for the last element like sub-sub menu mouseover functions written in minmen are not applicable, so go in this js file add onmouseover and out functions for last sub-sub menu div element.

var menuOutput = "";
var appvar;
var bordColor = "#000000";
var backColor = "#000000";

menuOutput += "<div class=\"menuBar\" style=\"position: absolute; z-index:100; left:175px; top:76px; width:580;\">";


// first menu option

if (appvar == "empweb")
menuOutput += "<a class=\"menuButton\" title=\"You are here, on this Page.\" onmouseover=\"buttonMouseover(event, 'empWeb');\" style=\"color:#ffffff; border: 1px outset "+bordColor+";  top:-1px; left: 1px;background-color: "+backColor+";\" >Employment Website</a>";
else
menuOutput += "<a class=\"menuButton\" target=\"_blank\" href=\"http://jobs.texastech.edu/\" title=\"Click here to go to the Employment Website\">Employment Website</a>";

// Imp Docs menu option
if (appvar == "docs")
menuOutput += "<a class=\"menuButton\"  href=\"blank.html\" onclick=\"return false;\" onmouseover=\"buttonMouseover(event, 'docs');\" title=\"Important Documents for Applicants to Texas Tech University\" style=\"color:#ffffff; border: 1px outset "+bordColor+";  top:-1px; left:1px;background-color: "+backColor+";\" >Important Docs</a>"
else
menuOutput += "<a class=\"menuButton\" href=\"blank.html\" onclick=\"return false;\" onmouseover=\"buttonMouseover(event, 'docs');\" title=\"Important Documents for Applicants to Texas Tech University\">Important Docs</a>";


// Tutorial menu option

if (appvar == "tutorial")
menuOutput += "<a class=\"menuButton\" title=\"You are here, on this Page.\" style=\"color:#ffffff; border: 1px outset "+bordColor+";  top:-1px; left:1px;background-color: "+backColor+";\" >Online Tutorial</a>";
else
menuOutput += "<a class=\"menuButton\" target=\"_blank\" href=\"http://jobs.texastech.edu/userfiles/static/customers/78/TTU_Applicant_Powerpoint.ppt\" title=\"Click here to go to the Online Tutorial\"  >Online Tutorial</a>";

// FAQ menu option
if (appvar == "faq")
menuOutput += "<a class=\"menuButton\" title=\"You are here, on this Page.\" style=\"color:#ffffff; border: 1px outset "+bordColor+";  top:-1px; left:1px;background-color: "+backColor+";\" >FAQs</a>";
else
menuOutput += "<a class=\"menuButton\" href=\"faq.aspx\" title=\"Click here to go to the Frequently Asked Questions.\" >FAQs</a>";

// Ask Personnel menu option
if (appvar == "askp")
menuOutput += "<a class=\"menuButton\"  title=\"You are here, on this Page.\" style=\"color:#ffffff; border: 1px outset "+bordColor+";  top:-1px; left:1px;background-color: "+backColor+";\" >Ask Personnel</a>"
else
menuOutput += "<a class=\"menuButton\" href=\"askPapplicant.aspx\" title=\"Click here to submit your question to Texas Tech Personnel.\"  >Ask Personnel</a>";

// Applicant Home menu option
if (appvar == "appinfo")
menuOutput += "<a class=\"menuButton\"  title=\"You are here, on this Page.\" style=\"color:#ffffff; border: 1px outset "+bordColor+";  top:-1px; left:1px;background-color: "+backColor+";\" >Applicant Home</a>"
else
menuOutput += "<a class=\"menuButton\" href=\"applicant-information.aspx\" title=\"Click here to go to the applicant homepage.\"  >Applicant Home</a>";

menuOutput += "</div>";

//Insurance-Medical-HealthSelect-Premiums sub-sub-menu options  

menuOutput += "<div id=\"docs\" class=\"menu\" onmouseover=\"mouseondiv()\">";
menuOutput += "<a class=\"menuItem\" href=\"applegalstat.aspx\">Texas Tech Legal Statements</a>";
menuOutput += "<a class=\"menuItem\" href=\"app-empeligdocs.aspx\">Employment Eligibility Documents</a>";
menuOutput += "</div>";


document.write(menuOutput);