/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function ChangeAwardPhoto(imageNumber)
  {

  var path = './2010Awards/images/'; 
  var img1 = 'AIABRAwards10.jpg';
  var img2 = 'AIABRAwards78.jpg';
  var img3 = 'AIABRAwards90.jpg';
  var img4 = 'AIABRAwards103.jpg';

  var imageArray = new Array;
  imageArray[0] = img1;
  imageArray[1] = img2;
  imageArray[2] = img3;
  imageArray[3] = img4;

  var photo = document.getElementById('awardsPhoto');
  photo.src = path + imageArray[imageNumber];
  }


