/*---------------------------------------------------------------------------------------------------------------------
Copyright (C) 2003 Multimedia Solutions Corporation.
All rights reserved.

Description:	LEFT MENU ROLL OVER
				Juan F. Sarria
Date:			07/30/2003
Modified:		02/13/2004
----------------------------------------------------------------------------------------------------------------------*/
var CurrSubSection = CurrSubSection + "";
var MainSpace = "&nbsp;&nbsp;";
var SubSpace = MainSpace + "<img border='0' src='images/LeftMenuArrow.gif' width='18' height='18'>";
var Class = "LeftSubOpc";

LeftOpc = new Array (10);
LeftGoTO = new Array(10);

for (i=0; i<10; i++) { LeftOpc[i] = new Array(10) }
for (i=0; i<10; i++) { LeftGoTO[i] = new Array(10) }

LeftOpc[1][0] = "Choose your environment";
	LeftOpc[1][1] = "Hospital";
	LeftOpc[1][2] = "Group Practice";
	LeftOpc[1][3] = "Physicians office";
LeftOpc[2][0] = "Choose a Brother solution";
	LeftOpc[2][1] = "Multi-Function Centers";
	LeftOpc[2][2] = "Printers";
	LeftOpc[2][3] = "Fax machines";
	LeftOpc[2][4] = "P-Touch labeler";
	LeftOpc[2][5] = "Secure Print Solutions";

LeftGoTO[1][0] = "javscript:void(0)";
	LeftGoTO[1][1] = "Hospital.aspx";
	LeftGoTO[1][2] = "GroupPractice.aspx";
	LeftGoTO[1][3] = "Physicianoffice.aspx";
LeftGoTO[2][0] = "javscript:void(0)";
	LeftGoTO[2][1] = "MultiFunctionCenters.aspx";
	LeftGoTO[2][2] = "Printers.aspx";
	LeftGoTO[2][3] = "Faxmachines.aspx";
	LeftGoTO[2][4] = "PTouchlabeler.aspx";
	LeftGoTO[2][5] = "../microsite/SecurePrint/index.asp";

Main = 0;
while (LeftOpc[++Main][0] != null) {
	document.write("<span class='LeftMainOpc'>" + MainSpace + LeftOpc[Main][0] + "</span><br>");
	Sub = 0;
	while (LeftOpc[Main][++Sub] != null) {
		Ind = Main + "" + Sub;
		Class = (Ind == CurrSubSection) ? "LeftSubOpcSelected" : "LeftSubOpc";
		SubOption = "<span class='" + Class + "'><a href='" + LeftGoTO[Main][Sub] + "'>" + LeftOpc[Main][Sub] + "</a></span>";
		document.write(SubSpace + SubOption + "<br>");
	}
	document.write("<img border='0' src='images/1x1.gif' width='1' height='16'><br>");
}
