/*******************************************************************************
 *                                                                             *
 * File        : random_fashion_en.js                                             *
 *                                                                             * 
 * Author      : Boucher Jean-Pierre                                           *
 * Creation    : 19-MAR-2004                                                   *
 *                                                                             *
 * Affiche une image aleatoirement.                                            *
 *                                                                             *
 ******************************************************************************/
var photos   = new Array();
var comments = new Array();

photos[0] = "images/PA220138.jpg"; comments[0] = "Working session on integral leadership";
photos[1] = "images/ecole500_p.jpg"; comments[1] = "HEC Montreal's main building";
photos[2] = "images/verriere500.jpg"; comments[2] = "Play of light, HEC Montreal";
photos[3] = "images/ph004-250.jpg"; comments[3] = "Library, HEC Montreal";
photos[4] = "images/picture367.jpg"; comments[4] = "First graduate seminar in ethics";
photos[5] = "images/Ethique-MBA_home.jpg"; comments[5] = "MBA Ethics & Decision Management";
photos[6] = "images/tableau_noir_home.jpg"; comments[6] = "Blackboard";
photos[7] = "images/hec_nuit_home.jpg"; comments[7] = "HEC Montreal, nightview";
photos[8] = "images/cours_bacc_home.jpg"; comments[8] = "BAA Ethics and Management";
photos[9] = "images/semain_ethiq_lead.jpg"; comments[9] = "Ethics and Leadership week";
photos[10] = "images/conf_17nov_1medium.png"; comments[10] = "Conference &eacute;thique, gestion et gouvernance : au-del&agrave; de la r&eacute;glementation, November 17, 2005";
photos[11] = "images/conf_17nov_2medium.png"; comments[11] = "Conference &eacute;thique, gestion et gouvernance : au-del&agrave; de la r&eacute;glementation, November 17, 2005";
photos[12] = "images/conf_17nov_3medium.png"; comments[12] = "Conference &eacute;thique, gestion et gouvernance : au-del&agrave; de la r&eacute;glementation, November 17, 2005";
photos[13] = "images/conf_17nov_4medium.png"; comments[13] = "Conference &eacute;thique, gestion et gouvernance : au-del&agrave; de la r&eacute;glementation, November 17, 2005";

/*
photos[8] = "images/img_achilles_238.gif"; comments[8] = "<a class='menu_petit_bl' href='english/project/talon.htm'>The Corporate Achilles' Heel</a>";
photos[9] = "images/img_dev_sens_238.jpg"; comments[9] = "<a class='menu_petit_bl' href='english/project/pratique.htm'>Integral Management Practices</a>";
*/

function randomImage(imgID, txtID) {
   var imgNb = Math.floor(photos.length * Math.random());

   var img = document.getElementById(imgID);
   var txt = document.getElementById(txtID);
   
   img.src = photos[imgNb];
   txt.innerHTML=comments[imgNb];
}