var SlideShowSpeed = 5000;


var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this


Picture[1]  = 'images/photos/pic1.jpg';
Picture[2]  = 'images/photos/pic2.jpg';
Picture[3]  = 'images/photos/pic3.jpg';
Picture[4]  = 'images/photos/pic4.jpg';
Picture[5]  = 'images/photos/pic5.jpg';
Picture[6]  = 'images/photos/pic6.jpg';
Picture[7]  = 'images/photos/pic7.jpg';
Picture[8]  = 'images/photos/pic8.jpg';
Picture[9]  = 'images/photos/pic9.jpg';
Picture[10] = 'images/photos/pic10.jpg';
Picture[11] = 'images/photos/pic11.jpg';
Picture[12] = 'images/photos/pic12.jpg';
Picture[13] = 'images/photos/pic13.jpg';
Picture[14] = 'images/photos/pic14.jpg';
Picture[15] = 'images/photos/pic15.jpg';
Picture[16] = 'images/photos/pic16.jpg';
Picture[17] = 'images/photos/pic17.jpg';
Picture[18] = 'images/photos/pic18.jpg';
Picture[19] = 'images/photos/pic19.jpg';
Picture[20] = 'images/photos/pic20.jpg';
Picture[21] = 'images/photos/pic21.jpg';
Picture[22] = 'images/photos/pic22.jpg';
Picture[23] = 'images/photos/pic23.jpg';
Picture[24] = 'images/photos/pic24.jpg';
Picture[25] = 'images/photos/pic25.jpg';
Picture[26] = 'images/photos/pic26.jpg';
Picture[27] = 'images/photos/pic27.jpg';



Caption[1]  = "College Annual Day - Principal, Dr. C. Sylendra Babu, Shri. M.V. Muthuramalingam, Shri. Ponnusamy";
Caption[2]  = "Dr. C. Sylendra Babu, Commissioner of Police-Coimbatore; Shri. M. V. Muthuramalingam, Chairman-Velammal Educational Trust";
Caption[3]  = "A Section of Gathering at the College Annual Day - 13th Feb 2011";
Caption[4]  = "Our Chairman Addressing the Gathering - College Annual Day";
Caption[5]  = "The Overall Sheild for Academics CSE Department";
Caption[6]  = "The Overall Sheild for Sports ECE Department";
Caption[7]  = "College Choir Singing in the College Annual Day";
Caption[8]  = "Classical Dance Performance";
Caption[9]  = "A Skit-Play and Performance";
Caption[10] = "Western Dance - by Girls";
Caption[11] = "Mime Performace & Play - by Girls";
Caption[12] = "Theme Fusion Music & Performance";
Caption[13] = "Folk Dance & Performance";
Caption[14] = "Western Dance - by Boys";
Caption[15] = "Pride of South Tamilnadu - 2011";
Caption[16] = "Our Hon' Chairman Sharing a lighter moment with Shri. P. Chidambaram, Union Minister";
Caption[17] = "Our Proud & Our Pride - Sharing the Stage";
Caption[18] = "Union Minister Shri. P. Chidambaram being honoured by Our Chairman Shri. M. V. Muthuramalingam";
Caption[19] = "Shri. Ramasubramaniya Raja, Chairman-Ramco, being honoured by Our Chairman Shri. M. V. Muthuramalingam";
Caption[20] = "Shri. Ramasubramaniya Raja, Chairman-Ramco, Awarded 'PRIDE OF SOUTH TAMILNADU' by Shri. P. Chidambaram ";
Caption[21] = "Shri. Ramasubramaniya Raja, Delivering the Acceptance Speach";
Caption[22] = "Dr. N. Suresh Kumar, Principal-VCET; Our Chairman; and the Union Minister";
Caption[23] = "Shri. P. Chidambaram, Union Minister Addressing the Gathering";
Caption[24] = "Dignitaries on the Dias - Pride of South Tamilnadu";
Caption[25] = "A Section of the Gathering - pride of South Tamilnadu";
Caption[26] = "Our Chairman Shri. M. V. Muthuramalingam releases the ICCCI ’10 Conference Souvenir, and the first copies are received by Dr. A. Sivathanu Pillai and Dr. R. Murugesan";
Caption[27] = "Dr. G. J. Samathanam, Advisor, DST, NewDelhi; Dr. S. Vincent, Member Secretary, TNSCST; and our Hon' Chairman at the Science Utsav 2010";



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);
}


