var slideArray = new Array()
var t=4000;
slideArray[0]= "<span style='margin:0px 20px; font-size:13px; color:#049;'><i>It is a great experience visiting GIET.</i></span><br /><span style='margin:0px 20px; font-size:13px; color:#049;'><i>The ambience of the place is very pleasing </i></span> <br /> <span style='margin-left:20px;'> <b> Suryanarayana K - TCS, HYD. </b> </span>";

slideArray[1]= "<span style='margin:0px 20px; font-size:13px; color:#049;'><i>It is a great experience visiting GIET.</i> </span><br /><span style='margin:0px 20px; font-size:13px; color:#049;'><i>And interactiog with the students and faculty.</i></span> <br /> <span style='margin-left:20px; font-size:11px;'><b>Katherena Dhanani-Councilate General of USA,HYD</b></span>";

slideArray[2]= "<span style='margin:0px 20px; font-size:13px; color:#049;'><i>Thank you for a very interesting found of</i> </span><br /><span style='margin:0px 20px; font-size:13px; color:#049;'><i>your impressive compound. </i></span> <br /> <span style='margin-left:20px;'><b>Richard Hyde-British Deputy High Consulate</b></span>";

slideArray[3]= "<span style='margin:0px 20px; font-size:13px; color:#049;'><i>Thank you for a wonderful unit to </i> </span><br /><span style='margin:0px 20px; font-size:13px; color:#049;'><i>the Chaitanya Group of Institution. </i></span> <br /> <span style='margin-left:20px;'><b>M.M.Pallam Raju-Minister of State for Defence</b> </span>";

slideArray[4]= "<span style='margin:0px 5px; font-size:12px; color:#049;'><i>I Commended the infrastructure has been</i> </span><br /><span style='margin:0px 5px; font-size:12px; color:#049;'><i>created here. I convenced that it very student critiric. </i></span> <br /> <span style='margin-left:20px; font-size:11px;'><b>Dr.D.Purandeswari-Minister of State for HRD</b> </span>";

function firstSlide()

{

document.getElementById('div_display').innerHTML=slideArray[0];

setTimeout("secondSlide()",t);

}

function secondSlide()

{

document.getElementById('div_display').innerHTML=slideArray[1];

setTimeout("thirdSlide()",t);

}

function thirdSlide()

{

document.getElementById('div_display').innerHTML=slideArray[2];

setTimeout("fourtSlide()",t);

}


function fourtSlide()

{

document.getElementById('div_display').innerHTML=slideArray[3];

setTimeout("fifthSlide()",t);

}

function fifthSlide()

{

document.getElementById('div_display').innerHTML=slideArray[4];

setTimeout("firstSlide()",t);

}
