/*******************************************************************************
 *                                                                             *
 * File        : random_fashion.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] = "Session de travail sur le Leadership Intégral";
photos[1] = "images/ecole500_p.jpg"; comments[1] = "L'édifice d'HEC Montréal";
photos[2] = "images/verriere500.jpg"; comments[2] = "Jeu de lumière, HEC Montréal";
photos[3] = "images/ph004-250.jpg"; comments[3] = "Bibliothèque, HEC Montréal";
photos[4] = "images/picture367.jpg"; comments[4] = "Premier cours d'éthique au DESG";
photos[5] = "images/Ethique-MBA_home.jpg"; comments[5] = "MBA éthique et gestion de la décision";
photos[6] = "images/tableau_noir_home.jpg"; comments[6] = "Tableau noir";
photos[7] = "images/hec_nuit_home.jpg"; comments[7] = "HEC Montréal, vue nocturne";
photos[8] = "images/cours_bacc_home.jpg"; comments[8] = "Premier cours d'éthique au Baccalauréat";
photos[9] = "images/sem_ethiq_leader.jpg"; comments[9] = "Semaine éthique et leadership avec Humaniterre";
photos[10] = "images/conf_17nov_1medium.png"; comments[10] = "Conférence éthique, gestion et gouvernance : au-delà de la réglementation, 17 novembre 2005";
photos[11] = "images/conf_17nov_2medium.png"; comments[11] = "Conférence éthique, gestion et gouvernance : au-delà de la réglementation, 17 novembre 2005";
photos[12] = "images/conf_17nov_3medium.png"; comments[12] = "Conférence éthique, gestion et gouvernance : au-delà de la réglementation, 17 novembre 2005";
photos[13] = "images/conf_17nov_4medium.png"; comments[13] = "Conférence éthique, gestion et gouvernance : au-delà de la réglementation, 17 novembre 2005";
photos[14] = "images/rona20070601.jpg"; comments[14] = "Rona accorde à la Chaire une subvention d'un demi million de dollars";


/*
photos[2] = "images/amphi500.jpg"; comments[2] = "Amphith?atre IBM, HEC Montr?al";
photos[7] = "images/groupe_chaire_home.jpg"; comments[7] = "Groupe de la Chaire de management ?thique";
photos[8] = "images/img_achilles_238.gif"; comments[8] = "<a class='menu_petit_bl' href='francais/projet/talon.htm'>Projet Talon d'Achille</a>";
photos[9] = "images/img_dev_sens_238.jpg"; comments[9] = "<a class='menu_petit_bl' href='francais/projet/pratiques.htm'>Projet Pratiques int?grales en gestion</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];
}

function showNews( imgID, txtID, idNews ) {
    var imgNb;
    if(idNews == null)
        imgNb = Math.floor(photos.length * Math.random());
    else
        imgNb = idNews;

   var img = document.getElementById(imgID);
   var txt = document.getElementById(txtID);

   img.src = photos[imgNb];
   txt.innerHTML=comments[imgNb];
}