
var sponsors = {

sponsorIDA:null, sponsorIDB:null, sponsorWidth:0, shift:0,

start:function()
{
  this.sponsorIDA = document.getElementById('sponsorA');
  this.sponsorIDB = document.getElementById('sponsorB');

  this.sponsorWidth = this.sponsorIDA.offsetWidth;

  this.sponsorIDB.innerHTML = this.sponsorIDA.innerHTML;

  this.sponsorIDB.style.left = this.sponsorWidth;

  this.runLogos();
},

runLogos:function()
{
  this.shift = ++this.shift % this.sponsorWidth;

  this.sponsorIDA.style.left = -this.shift;
  this.sponsorIDB.style.left = -this.shift + this.sponsorWidth;

  setTimeout("sponsors.runLogos()",30);
}
}

var message = {
hide:function()
{
  document.getElementById('messageDiv').style.visibility = 'hidden';
}
}
