//=====================================================================================================//
// Javascript created for the home page of www.WIHResorts.com                                          //
// Author:  Carl Gruenenfelder      email: c_gruenenfelder@hotmail.com                                 //
// Created: 01.08.2006                                                                                 //
//=====================================================================================================//
var aHPgColors = new Array;
var i          = 0;
var j          = 0;
var oCurrLine;
var oElement;
var oTextLine;
var vCurrentPos;
var vStartPos  = -1000;
var vMaxPos    = 0;
var vMoveSteps = 10;
var vTimeout   = '';
aHPgColors     = ['Red','Orange','Yellow','Lime','Aqua','Blue','Purple'];

function fnHomePgTxt()
{
  fnStartPos();
  i           = 0;
  vCurrentPos = vStartPos;
  fnShowHomeTxt();
}

function fnShowHomeTxt()
{
  oElement  = document.getElementById('HomePgTxt');
  oTextLine = oElement.getElementsByTagName('P');
  oCurrLine = oTextLine[i];
  if((vCurrentPos+vMoveSteps)<=vMaxPos)
  {
    vCurrentPos          = vCurrentPos + vMoveSteps;
    oCurrLine.style.left = vCurrentPos + 'px';
  }
  if(vCurrentPos==vMaxPos)
  {
    if(i<oTextLine.length - 1)
    {
      i++;
      vCurrentPos = vStartPos;
    }
    oCurrLine.style.color = aHPgColors[i-1];
  }
  else
  {
    oCurrLine.style.color = aHPgColors[j];
    if(j==6) j=0;
    else j++;
  }
  if((vCurrentPos==vMaxPos) && (i==oTextLine.length)) clearTimeout(vTimeout);
  else vTimeout = setTimeout('fnShowHomeTxt()',100);
}

function fnStartPos()
{
  oElement  = document.getElementById('HomePgTxt');
  oTextLine = oElement.getElementsByTagName('P');
  for (i=0; i<oTextLine.length; i++)
  {
    oTextLine[i].style.left = vStartPos + 'px';
  }
}

