var mycontent=new Array()
mycontent[0]='<br><span class="blackTxt">"Great service! The critique arrived very quickly, and it was incredibly helpful. I have incorporated all the edits to my revised statement. I would definitely recommend this service. Keep up the good work!"<br><br></span><span class="blueTxt"><strong>David, Canada.</strong></span><br><br>'
mycontent[1]='<br><span class="blackTxt">"I was so satisfied with the edit I got. Thanks!!<br><br></span><span class="blueTxt"><strong>Simon, South Korea</strong></span><br><br>'
mycontent[2]='<br><span class="blackTxt">"I think you ve done an outstanding job! Thank you very much!"<br><br></span><span class="blueTxt"><strong>V., Russia</strong></span><br><br>'
mycontent[3]='<br><span class="blackTxt">"Great editor. I will recommend to my friend who is applying as well."<br><br></span><span class="blueTxt"><strong>Danny, USA </strong></span><br><br>'
mycontent[4]='<br><span class="blackTxt">"The editing service was of great help."</span><br><br><span class="blueTxt"><strong>Keith, Japan</strong></span><br><br>'
var i=0

function altercontent(){
if (document.all)
dcontent.innerHTML=mycontent[i];
else if (document.getElementById){
rng = document.createRange();
el = document.getElementById("dcontent");
rng.setStartBefore(el);
htmlFrag = rng.createContextualFragment(mycontent[i]);
while (el.hasChildNodes()) el.removeChild(el.lastChild);
el.appendChild(htmlFrag);}

i=(i==mycontent.length-1)? 0 : i+1
setTimeout("altercontent()", 10000)
}

window.onload=altercontent
