    // Define function to create bins
    function MakeImageArray(n) {
    	// this.length = n;
    	for (var j=1; j<=n; j++) {
    		this[j] = new Image();
    	}
    return this;
    }

    // Define bin for inactive buttons
    imagesoff = new MakeImageArray(13);

    // Define array for active buttons
    imageson = new MakeImageArray(13);

    // Load the array with the proper images  to display when
    // the mouse is not over the buttons

    // image number 1 is the title
    imagesoff[2].src = "images/buttons/ButtonWho.gif";
    imagesoff[3].src = "images/buttons/ButtonConsult.gif";
    imagesoff[4].src = "images/buttons/ButtonTraining.gif";
	imagesoff[5].src = "images/buttons/ButtonCourses.gif";
    imagesoff[6].src = "images/buttons/ButtonOurPeople.gif";
    imagesoff[7].src = "images/buttons/ButtonClients.gif";
    imagesoff[8].src = "images/buttons/ButtonContact.gif";
    imagesoff[9].src = "images/buttons/BusinessTransformation.gif";
    imagesoff[10].src = "images/buttons/CompanyMerger.gif";
    imagesoff[11].src = "images/buttons/VisionAndValues.gif";
    imagesoff[12].src = "images/buttons/TeamDevelopment.gif";

    // The another array with the images to display when
    // the mouse is over them

    // image number 1 is the title
    imageson[2].src = "images/buttons/ButtonWhoOver.gif";
    imageson[3].src = "images/buttons/ButtonConsultOver.gif";
    imageson[4].src = "images/buttons/ButtonTrainingOver.gif";
	imageson[5].src = "images/buttons/ButtonCoursesOver.gif";
    imageson[6].src = "images/buttons/ButtonOurPeopleOver.gif";
    imageson[7].src = "images/buttons/ButtonClientsOver.gif";
    imageson[8].src = "images/buttons/ButtonContactOver.gif";
    imageson[9].src = "images/buttons/BusinessTransformationOver.gif";
    imageson[10].src = "images/buttons/CompanyMergerOver.gif";
    imageson[11].src = "images/buttons/VisionAndValuesOver.gif";
    imageson[12].src = "images/buttons/TeamDevelopmentOver.gif";

    // Function to switch images when the mouse moves over them
    function mouseon(n) {
    	document.images[n-1].src = imageson[n].src;
    }

    // Function to switch images when the mouse moves off
    function mouseoff(n) {
    	document.images[n-1].src = imagesoff[n].src;
    }
