http://www.gatabasketball.com/
You can view the source to see that everything seems correct. It was fine yesterday afternoon.
TIA
This is a very simple implementation of the menu.
Here is the menu_data code:
Code: Select all
fixMozillaZIndex=true; //Fixes Z-Index problem with Mozilla browsers but causes odd scrolling problem, toggle to see if it helps
_menuCloseDelay=500;
_menuOpenDelay=150;
_subOffsetTop=2;
_subOffsetLeft=-2;
with(menuStyle=new mm_style()){
onbgcolor="#000000";
oncolor="#FFFFFF";
offbgcolor="#005EAD";
offcolor="#FFFFFF";
bordercolor="#005EAD";
borderstyle="solid";
borderwidth=0;
separatorcolor="#000000";
separatorsize="0";
padding="5";
fontsize="12px";
fontstyle="bold";
fontfamily="Arial";
pagecolor="black";
pagebgcolor="#005EAD";
headercolor="#000000";
headerbgcolor="#ffffff";
subimage="";
subimagepadding=0;
}
with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
left=0;
orientation="horizontal";
style=menuStyle;
top=0;
}
with(milonic=new menuname("Sponsor")){
style=menuStyle;
itemheight=20;
aI("text=Fundraisers;url=/sponsors/index.php;");
aI("text=Sponsorship;url=/sponsors/spons01.php;");
aI("image=/images/menu_drop01.jpg;type=header;");
}
drawMenus();
Code: Select all
<script type="text/javascript">
with(milonic=new menuname("Main Menu")){
style=menuStyle;
top=155;
left=200;
alwaysvisible=1;
orientation="horizontal";
overfilter="";
position="relative";
aI("image=/images/but_home01.jpg;url=http://www.gatabasketball.com;");
aI("image=/images/but_about01.jpg;url=/about/index.php;");
aI("image=/images/but_players01.jpg;url=/players/index.php;");
aI("image=/images/but_coaches01.jpg;url=/coaches/index.php;");
aI("image=/images/but_sponsors01.jpg;showmenu=Sponsor;");
aI("image=/images/but_contact01.jpg;url=/contact/index.php;");
}
drawMenus();
</script>