// JavaScript Document
var SlideShowSpeed = 3000;
var CrossFadeDuration = 3;
var Picture = new Array(); 
var Caption = new Array(); 
Picture[1]  = 'current_projects/Alliance.jpg';
Picture[2]  = 'current_projects/BR CONST.jpg';
Picture[3]  = 'current_projects/VS Sudha Alt.jpg';
Picture[4]  = 'current_projects/club111 copy.jpg';
Picture[5]  = 'current_projects/EPE Industries View.jpg';
Picture[6]  = 'current_projects/CBR Model Estates.jpg';
Picture[7]  = 'current_projects/Gandhi Commercial.jpg';
Picture[8]  = 'current_projects/GATE WAY.jpg';
Picture[9]  = 'current_projects/VS Sudha Alt 1 (1).jpg';
Picture[10] = 'current_projects/Nagarjuna Homes.jpg';
Picture[11] = 'current_projects/Vijaywada ( Corporate Office).jpg';
Picture[12] = 'current_projects/Vijaywada Commercial (High street Mall).jpg';
Picture[13] = 'current_projects/NVM Gangaram.jpg';
Picture[14] = 'current_projects/RV Homes.jpg';
Picture[15] = 'current_projects/Nagpur.jpg';
Picture[16]  = 'current_projects/GATE WAY1.jpg';
Caption[1]  = "Alliance.";
Caption[2]  = "BR Constructions.";
Caption[3]  = "VS Sudha Alt.";
Caption[4]  = "club111 copy.";
Caption[5]  = "EPE Industries View.";
Caption[6]  = "CBR Model Estates.";
Caption[7]  = "Gandhi Commercial.";
Caption[8]  = "Gate Way.";
Caption[9]  = "VS Sudha Alt 1 (1).";
Caption[10] = "Nagarjuna Homes.";
Caption[11] = "Vijaywada (Corporate Office).";
Caption[12] = "Vijaywada Commercial(High Street Mall).";
Caption[13] = "NVM Gangaram.";
Caption[14] = "RV Homes.";
Caption[15] = "Nagpur.";
Caption[16] = "Gate Way1.";
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}
function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
