// WebCT95 
//
// Copyright (C) 2003 Conseil Général du Val d'Oise. All Rights
// Reserved.
//
// Developed by IDEALX S.A.S. and Bull S.A. 
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA.


	// Creating a 10x2 two dimensional array
	var positionMatrix = new Array(10);
	for (var i = 0; i < positionMatrix.length; i++) {
	    positionMatrix[i] = new Array(2);
	}
	// Depart X=0, Y=165, step sur axe X=65
	positionMatrix[0][0] = "15px";
	positionMatrix[0][1] = "165px";

	positionMatrix[1][0] = "65px";
	positionMatrix[1][1] = "165px";

	positionMatrix[2][0] = "130px";
	positionMatrix[2][1] = "165px";

	positionMatrix[3][0] = "195px";
	positionMatrix[3][1] = "165px";

	positionMatrix[4][0] = "260px";
	positionMatrix[4][1] = "165px";

	positionMatrix[5][0] = "325px";
	positionMatrix[5][1] = "165px";

	positionMatrix[6][0] = "390px";
	positionMatrix[6][1] = "165px";
	
	positionMatrix[7][0] = "455px";
	positionMatrix[7][1] = "165px";

	positionMatrix[8][0] = "520px";
	positionMatrix[8][1] = "165px";

	// Attention, position du menu prévue pour 8 rubriques...
	positionMatrix[9][0] = "540px";
	positionMatrix[9][1] = "165px";

