// Mozilla needs an ascii character in a <div> in order for it to render :P
if(browser=="Mozilla") {var  divfix = ".";} else { var divfix = "";}

/* Prototypes:
 * Menu(left, top, width, space, backgroundcolor, backgroundchange, fontsize)
 * Menu.prototype.adStyle=function(id,bottomBorder,topBorder,leftBorder,rightBorder,padding,newWidth,newHeight)
 * Menu.prototype.addDiv=function(menuParent,id,body,link,arrow,dontchangeBG)
 */

var d = window.document;

var homes = new Menu(137,85,90, 18, "#a9bdc6", "#D7DDE0", "10px");

d.writeln('<STYLE TYPE="text/css">');

homes.addStyle("h-bizzar1",0,0,0,0,3);
homes.addStyle("h-bizzar2",0,0,0,0,3);

d.writeln('</STYLE>');

homes.addDiv("homes","h-bizzar1",'BizarPC','index1.htm',1);
homes.addDiv("homes","h-bizzar2",'Bizar Telecom','index2.htm',1);


var oferta = new Menu(190,85, 90, 18, "#a9bdc6", "#D7DDE0", "10px");

d.writeln('<STYLE TYPE="text/css">');
oferta.addStyle("o-sisteme",0,0,0,0,3);
oferta.addStyle("o-componenete",0,0,0,0,3);
oferta.addStyle("o-software",0,0,0,0,3);
//care.addStyle("c-tools",0,0,1,1,3);
//care.addStyle("c-gateway",0,0,1,1,3);
//care.addStyle("c-business",0,0,1,1,3);
//care.addStyle("c-customer",0,0,1,1,3);
//care.addStyle("c-access",0,0,1,1,3);

d.writeln('</STYLE>');


oferta.addDiv("oferta","o-sisteme",'Istoric','sisteme.htm',1);
oferta.addDiv("oferta","o-componenete",'Componente','ofertapc.htm',1);
oferta.addDiv("oferta","o-software",'Software','software.htm',1);
//care.addDiv("care","c-tools",'PRODUCT TOOLS','../../care/tools/index.html',1);
//care.addDiv("care","c-gateway",'GATEWAY LOGIN','../../gatewaytop/index.html',1);
//care.addDiv("care","c-business",'BUSINESS CENTER','../../bctopnav/index.html',1);
//care.addDiv("care","c-customer",'CUSTOMER REFERRAL','../../referral/index.html',1);
//care.addDiv("care","c-access",'ACCESS NUMBERS','../../accessnumbertop/index.html',1);


var websolutions = new Menu(280, 85, 90, 18, "#a9bdc6", "#D7DDE0", "10px");

d.writeln('<STYLE TYPE="text/css">');
//investors.addStyle("i-pic",0,0,1,1,0,81,21);
websolutions.addStyle("w-webhosting",0,0,0,0,3);
websolutions.addStyle("w-webdesign",0,0,0,0,3);
websolutions.addStyle("w-portofoliu",0,0,0,0,3);

d.writeln('</STYLE>');

//investors.addDiv("investors","i-pic",'<img src="/images/navigation/xo104dw.gif" width="81" height="21" border="0">','../../investors/index.html',0,1);
websolutions.addDiv("websolutions","w-webhosting",'Internet','webhosting.htm',1);
websolutions.addDiv("websolutions","w-webdesign",'Clienti','webdesign.htm',1);
websolutions.addDiv("websolutions","w-portofoliu",'Retele','retele.htm',1);


var contact = new Menu(395, 85, 90, 18, "#a9bdc6", "#D7DDE0", "10px");

d.writeln('<STYLE TYPE="text/css">');
//careers.addStyle("ca-pic",0,0,1,1,0,68,21);
contact.addStyle("co-bizzarpc",0,0,0,0,3);
contact.addStyle("co-bizzardesign",0,0,0,0,3);
contact.addStyle("co-tehnic",0,0,0,0,3);
//careers.addStyle("ca-diversity",0,0,1,1,3);

d.writeln('</STYLE>');

//careers.addDiv("careers","ca-pic",'<img src="/images/navigation/xo105dw.gif" width="68" height="21" border="0">','../../careers/index.html',0,1);
contact.addDiv("contact","co-bizzarpc",'BizarPC','contact1.htm',1);
contact.addDiv("contact","co-bizzardesign",'Bizar Telecom','contact2.htm',1);
contact.addDiv("contact","co-tehnic",'Tehnic','tehnic.htm',1);
//areers.addDiv("careers","ca-diversity",'DIVERSITY','../../careers/diversity.html',1);




function dontHide(menu)
{
	hideMenus(menu);
        menu.show();
}


function hideMenus(menu)
{
                if(!(menu == homes)) { homes.hide();}
                if(!(menu == oferta)) { oferta.hide();}
                if(!(menu == websolutions)) { websolutions.hide();}
                if(!(menu == contact)) { contact.hide();}
              
}

