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=4;
_subOffsetLeft=-2;


with(corporate_profile=new mm_style()){
styleid=3;
bordercolor="#ffffff";
borderstyle="solid";
borderwidth=0;
fontfamily="Arial,verdana,helvetica";
fontsize="12px";
fontstyle="normal";
fontweight="normal";
//overimage="images/corp_pro_btn.gif";
separatorcolor="white";
separatorsize=1;
}

with(project=new mm_style()){
styleid=3;
bordercolor="#ffffff";
borderstyle="solid";
borderwidth=0;
fontfamily="Arial,verdana,helvetica";
fontsize="12px";
fontstyle="normal";
fontweight="normal";
//overimage="images/menu/engineering_r.gif";
separatorcolor="white";
separatorsize=1;
}

with(market=new mm_style()){
styleid=3;
bordercolor="#ffffff";
borderstyle="solid";
borderwidth=0;
fontfamily="Arial,verdana,helvetica";
fontsize="12px";
fontstyle="normal";
fontweight="normal";
//overimage="images/menu/market_r.gif";
separatorcolor="white";
separatorsize=1;
}

with(projects=new mm_style()){
styleid=3;
bordercolor="#ffffff";
borderstyle="solid";
borderwidth=0;
fontfamily="Arial,verdana,helvetica";
fontsize="12px";
fontstyle="normal";
fontweight="normal";
//overimage="images/menu/projects_r.gif";
separatorcolor="white";
separatorsize=1;
}



with(WhiteBlue=new mm_style()){
styleid=2;
fontfamily="Arial,verdana,helvetica";
fontsize="12px";
fontstyle="normal";
fontweight="normal";
offbgcolor="#FFFFFF";
offcolor="#00529b";
onbgcolor="#1254ac";
oncolor="#FFFFFF";
bordercolor="#1254ac";
borderstyle="solid";
borderwidth=1;
padding=3;
separatorcolor="#00529b";
separatorsize=1;
}


with(milonic=new menuname("corporate_profile")){
style=WhiteBlue;
menuwidth=120;
top="offset=-12";
left="offset=-120";
//overimage="images/menu/about_r.gif;";
aI("text=About ABG Group;url=aboutabg_group.asp;");
aI("text=About ABG Cement;url=aboutabg.asp;");
aI("text=Vision;url=vision.asp;");
aI("text=Milestones;url=milestones.asp;");
aI("text=Management;url=management.asp;");
aI("text=Executive Team;url=executive_team.asp;");
}

with(milonic=new menuname("project")){
style=WhiteBlue;
menuwidth=120;
top="offset=-12";
left="offset=-120";
aI("text=Highlights;url=highlights.asp;");
aI("text=Current Status;url=current_status.asp;");

}

with(milonic=new menuname("market")){
style=WhiteBlue;
menuwidth=100;
top="offset=9";
aI("text=Commercial Development;url=commercial_development.html;");
aI("text=Government/Regulatory;url=government_regulatory.html;");
aI("text=Municipal;url=municipal.html;");
aI("text=Public Works;url=public_works.html;");
aI("text=Institutional;url=institutional.html;");
}

with(milonic=new menuname("projects")){
style=WhiteBlue;
menuwidth=80;
top="offset=9";
left="offset=-50";
aI("text=Commercial;url=projects_commercial.html;");
aI("text=Public Works;url=projects_publicworks.html;");
aI("text=Water & Wastewater;url=projects_wastewater.html;");
aI("text=Residential;url=projects_residential.html;");
aI("text=Institutional;url=projects_institutional.html;");
}

drawMenus();

//toggle script
function toggle(obj,a) {
	var el = document.getElementById(obj);
	a = document.getElementById(a);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
		a.style.display = '';
	}
	else {
		el.style.display = '';
		a.style.display = 'none';
	}
}