/*---------------------------------------------------------------------------------------------------------------------
Copyright (C) 2003 Multimedia Solutions Corporation.
All rights reserved.

Description:	TOP MENU ROLL OVER
				Juan F. Sarria
Date:			07/30/2003
Modified:		02/13/2004
----------------------------------------------------------------------------------------------------------------------*/
var CurrSections = CurrSection + "";

imgext = ".gif"
button = new Array (10);
GoTO = new Array(10);

for (i=0; i<10; i++) { button[i] = new Array(10) }
for (i=0; i<10; i++) { GoTO[i] = new Array(10) }

button[0][0] = "images/opc1";
	//button[0][1] = "images/subopc_1_1";
button[1][0] = "images/opc2";
button[2][0] = "images/opc3";
button[3][0] = "images/opc4";

GoTO[0][0] = "http://commercial.brother.com";
	//GoTO[0][1] = "0101.asp";
GoTO[1][0] = "http://commercial.brother.com/02.aspx";
GoTO[2][0] = "https://commercial.brother.com/HealthCare/ContactUs.aspx";
GoTO[3][0] = "Default.aspx";

var Ind = 0;
for (var t=1; button[t-1][Ind] != null ; ++t) {
	if (CurrSections.indexOf(""+t) == 0 ) {
		document.write("<a href='" + GoTO[t-1][Ind] + "'><img align='center' border='0' src='" + button[t-1][0] + "1"+imgext+"' name='img" + (t-1) + "_" + Ind + "'></a>");
	} else {
		document.write("<a href='" + GoTO[t-1][Ind] + "' onmouseover=\"swapimg('img" + (t-1) + "_" + Ind + "'," + (t-1) + "," + Ind + ");\" onmouseout=\"swapimgBack('img" + (t-1) + "_" + Ind + "', " + (t-1) + "," + Ind + ");\"><img align='center' border='0' src='" + button[t-1][0] + "0"+imgext+"' name='img" + (t-1) + "_" + Ind + "'></a>");
	}
	if (button[t][Ind] != null)
		document.write("<img align='center' border='0' src='images/div1.gif'>");
}

function swapimg(img,swp,ind) {
	document.images[img].src = button[swp][ind]+"r"+imgext
}

function swapimgBack(img,swp,ind) {
	document.images[img].src = button[swp][ind]+"0"+imgext; 
}
