
ordernumber="";

emptyimage="transparent.gif";// Transparent image in gif format.
showdelay=200;//Time delay before submenus are displayed. Unit is milliseconds.
hidedelay=800;//Time delay before submenus are hidden. Unit is milliseconds.

/*Start Style Declarations*/

with(itemStyle=new fxstyle()){
width=410;
height=33;
color="#174487";
coloron="#174487";
bgcolor="#FFFFFF";
bgcoloron="#9ABCD8";
fontsize="8pt";
fontweight="plain";
fontfamily="Verdana,Arial";
paddingtop=2;
paddingleft=8;
arrow="";
arrowon="";
arrowright=20;
arrowtop=3;
}

with(menuStyle=new fxmenustyle()){
filterover="Alpha(opacity=90)";
menubgcolor="#ffffff";
menuborderwidth=1;
menubordercolor="#174487";
separatorsize=1;
separatorcolor="#174487";
highlightpath=true;
wiseposition=true;
}


/*Start Menu Declarations*/

with(new fxmenu("MainMenu")){
style=itemStyle;
menustyle=menuStyle;
visible=true;
position="relative";
top=0;
left=0;
orientation="horizontal";
fx("text=<b>About Us</b>;show=about;width=110;url=about.php;width=110");
fx("text=<b>Consulting</b>;url=consulting.php;width=100");
fx("text=<b>Student<br>Recruitment</b>;url=studentrecruitment.php;width=100");
fx("text=<b>Corporate<br>Services</b>;url=corpservices.php;width=100");
fx("text=<b>Publications</b>;url=publications.php;width=100");
}

with(new fxmenu("about")){
style=itemStyle;
menustyle=menuStyle;
width=110;
fx("text=<b>Higher-Edge USA</b>;url=usa.php;");
}

buildMenus();