/*
  function to place CD photos into the club page
*/

var comite = {

photoSource:new Array(	"images/jcm_thumb.jpg", 
			"images/jfl_thumb.jpg",
			"images/lpc_thumb.jpg",
			"images/sol_thumb.jpg",
			"images/pht_thumb.jpg",
			"images/rpr_thumb.jpg",
			"images/set_thumb.jpg",
			"images/hpe_thumb.jpg"),

images:new Array(), photoId:null, shift:0,

read:function()
{
  for(var k = 0; k < 8; k++)
  {
    this.images[k] = new Image();

    this.images[k].src = this.photoSource[k];
  }
},

start:function()
{
  this.photoId = document.getElementById('photos');

  var text = '';

  var left = 0;

  for(var i = 0; i < 16; i++)
  {
    text += '<img src="" style="position:absolute; left:' + left + 'px; top:0px; width:65px; height:80px" id="photo' + i + '">';

    left += 65;
  }

  this.photoId.innerHTML = text;

  for(var i = 0; i < 16; i++)
  {
    k = i % 8;

    document.getElementById('photo' + i).src = this.images[k].src;
  }

  this.move();
},

move:function()
{
  this.shift = ++this.shift % 520;

  this.photoId.style.left = -this.shift;

  setTimeout("comite.move()",40);
}
}

comite.read();
