window.addEvent('domready',function(){var intdelay=10000;var JSONrequest=new Request.JSON({url:'testimonials.json',onComplete:function(jsonObj){displayRecord(jsonObj.testimonials);displayInt();}});var tDisplay=$('tDisplay');var tRecord=[];function displayRecord(input){input.each(function(record,i){tRecord[i]={'quote':record.quote,'name':record.name,'company':record.company};});}var lastRecord;function displayInt(){var rand=$random(0,(tRecord.length-1));if(rand==lastRecord){if(rand==(tRecord.length-1)){rand-=1;}else{rand+=1;}}tDisplay.getElement('p.quote').set('html','"'+tRecord[rand].quote+'"');tDisplay.getElement('span.name').set('html',tRecord[rand].name);tDisplay.getElement('span.company').set('html',tRecord[rand].company);tDisplay.fade('in');lastRecord=rand;(function(){tDisplay.fade('out');}).delay(intdelay*.9);}JSONrequest.send();displayInt.periodical(intdelay,displayInt);});
