// Propriedades do Slideshow 'Imóveis em Prestigio'
var _speedP = 5000;
var _maxIP;
var _indexP=1;
var _rowP=0;
/*
  Método que inicializa o Slideshow 'Imóveis em Prestigio'.
*/
function init_slideP(_maxP)
{
    this._maxIP = _maxP;
  setTimeout("play_slideP();",  _speedP)
}
/*
  Método que configura as configurações do Slideshow 'Imóveis em Prestigio'.
*/
function play_slideP()
{
    change_slideP(_arrayP, _rowP, _indexP, document.getElementById("_controlP").value);
  _indexP++;
  if(_indexP > (_arrayP[0].length-1)) _indexP=0;
  _rowP++;
  if (_rowP == _maxIP) _rowP = 0;
  setTimeout('play_slideP()', _speedP);
  
}
/*
  Método que permite actualizar a informação de um determinado item do Slideshow.
*/
function change_slideP(_arrayP, _rowP, _indexP, _clientP)
{
  var __ucP=_clientP+_rowP;
  // Hyperlinks
  document.getElementById(__ucP + "_lnkTopP").href = "/Default.aspx?tabid=" + document.getElementById("_tabidP").value + "&idImo=" + _arrayP[0][_indexP] + "&language=" + document.getElementById("_idiomaP").value;
  document.getElementById(__ucP + "_lnkMiddleP").href = document.getElementById(__ucP + "_lnkTopP").href;
  document.getElementById(__ucP + "_lnkLeftP").href = document.getElementById(__ucP + "_lnkTopP").href;
  document.getElementById(__ucP + "_lnkRightP").href = document.getElementById(__ucP + "_lnkTopP").href;

  var _image = document.getElementById(__ucP + "_imgThumbP");
  if(document.all && !window.opera) {
  	_image.style.filter="blendTrans(duration=2)";
	  _image.style.filter="blendTrans(duration=crossFadeDuration)";
	  _image.filters.blendTrans.Apply();
	  // Actualiza as características do imóvel
	  document.getElementById(__ucP+"_lblTipoP").innerText = _arrayP[3][_indexP];
	  document.getElementById(__ucP+"_lblLocalP").innerText = _arrayP[6][_indexP];
	  document.getElementById(__ucP+"_lblFinalidadeP").innerText = _arrayP[4][_indexP];
	  document.getElementById(__ucP+"_lblPrecoP").innerText = _arrayP[5][_indexP] + " " +String.fromCharCode(0x20ac);
  } else {
	  // Actualiza as características do imóvel
      document.getElementById(__ucP+"_lblTipoP").textContent = _arrayP[3][_indexP];      document.getElementById(__ucP+"_lblLocalP").textContent = _arrayP[6][_indexP];      document.getElementById(__ucP+"_lblFinalidadeP").textContent = _arrayP[4][_indexP];      document.getElementById(__ucP+"_lblPrecoP").textContent = _arrayP[5][_indexP] + " " +String.fromCharCode(0x20ac);      }
  // Thumbnail
document.getElementById(__ucP + "_imgThumbP").src = _arrayP[1][_indexP]; 
  // ToolTip
document.getElementById(__ucP + "_imgThumbP").title = _arrayP[2][_indexP];

  // Aplica a transformação da imagem
  if(document.all && !window.opera) {
      document.getElementById(__ucP + "_imgThumbP").filters.blendTrans.Play();
  }
}
