/*
 * Script by Dieter Vanden Eynde
 * www.unrated.be
 * 11/04/07
 */
if (document.getElementById) window.onload = roster;

function roster(){
  var msg = document.getElementById('msg');
  
  var img = document.getElementsByTagName("img");
  
  for(a = 0; a < img.length; a++){

    update(a);
    
  }
  
  function update(pic){
     img[pic].onmouseover = function(){

        msg.innerHTML = img[pic].alt;

     }
     img[pic].onmouseout = function(){

        msg.innerHTML = 'hover over a member';

     }
  }
}

