var HomePage = 
{
    Captions : null,
    CaptionsCount : 0,
    
		Init : function(){
			if (document.getElementById)
			{ document.getElementById('leenInVIMode').src = '/layout/images/oooooo.gif';
				window.setTimeout('HomePage.ShowCaption(0)',50);
			};
			this.Captions = new Array(17);
  		this.Captions[1] = 'resistance is futile';
  		this.Captions[2] = 'all your base are belong to us';
  		this.Captions[3] = 'you must comply!';
  		this.Captions[4] = 'semper fi!';
  		this.Captions[5] = 'كيف حالكم انا من هولندة';
  		this.Captions[6] = 'the owls are not what they seem';
  		this.Captions[7] = 'ignorance is strength';
  		this.Captions[0] = 'this is virtual indoctrination';		

		  this.CaptionsCount = 8;
		},
  
    RandomNumber : function( randomMax )
    {
 			return Math.floor(Math.random()*(randomMax+1));
		},

    ShowCaption : function( number ){
			number = (number % this.CaptionsCount);
			var strCapt = this.Captions[number];
			document.getElementById('tvCaption1').innerHTML = strCapt;
			document.getElementById('tvCaption2').innerHTML = strCapt;
			document.getElementById('tvCaption3').innerHTML = strCapt;
			var newNumber = (1 + this.RandomNumber(this.CaptionsCount)) % this.CaptionsCount;
			while (newNumber == number)
				{ 
          newNumber = (1 + this.RandomNumber(this.CaptionsCount)) % this.CaptionsCount;
				};				
			window.setTimeout('HomePage.ShowCaption(' + newNumber + ')',2500);
			}

}
