﻿// JScript File
var iHPProjects=0;
function GetProjects()
{
//Call server side for data by web method 'P'- project, 'H'- for Home
xmlhttpPost('GetData.asmx/GetHPProjects',null,'P','H');
}
GetProjects();
function GetProjectOnebyOne()
{
var strProjects='';
strProjects=strProjects+'<table cellpadding="0" cellspacing="0" border="0" width="85%;" align="center">';
strProjects=strProjects+'<tr><td height="100">&nbsp;</td></tr>';
strProjects=strProjects+'<tr><td class="zone-title" >'+ HPProjectTitle[iHPProjects]  +  '</td></tr>';
strProjects=strProjects+'<tr><td height="9">&nbsp;</td></tr>';
strProjects=strProjects+'<tr><td class="contentCopy">'+ HPProjectBriefDesc[iHPProjects]  +  '</td></tr>';
strProjects=strProjects+'</table>'
divProject.innerHTML=strProjects;
iHPProjects=iHPProjects+1;
if (iHPProjects == HPProjectTitle.length) 
{
iHPProjects=0; 
}
 //change 5000 to xxxx for setting time of image rotation
  window.setTimeout(GetProjectOnebyOne, 5000);
}
GetProjectOnebyOne();


          


