<!-- begin JavaScript
//random news
 function randomNews(){
 
   news = new Array();
   
   news[0] = "Réunion avec des chercheurs américains & hollondais le mardi 13 Juin";
   
   
  //calculates a random index
  newsindex = Math.floor(Math.random() * news.length);
  
  /////////////////////////////////////
  document.write("<a href='#'><img src='news_img/news_"+ newsindex + ".jpg' width='128' height='86' alt='Réunions avec Professeurs' border='0'></a><br>" + news[newsindex] + "");
  
  /////////////////////////////////
  //the_timeout=setTimeout("moveNumber();", 80);
  //var the_timeout =  setTimeout("randomNews();", 3000);
}


// end JavaScript -->
