var badBrowser=(/MSIE ((5\.5)|6)/.test(navigator.userAgent)&&navigator.platform=="Win32");function theRotator(){$('ul#testimonials li').css("opacity","0.0");var testlen=$('ul#testimonials li').length;var testrand=Math.floor(Math.random()*testlen)+1;$("ul#testimonials li:nth-child("+testrand+")").addClass('show').css("opacity","1.0");$('div#text').text("testlen="+testlen+", testrand="+testrand);setInterval('rotate()',8000);}
function rotate(){var current=($('ul#testimonials li.show')?$('ul#testimonials li.show'):$('ul#testimonials li:first'));var next=((current.next().length)?((current.next().hasClass('show'))?$('ul#testimonials li:first'):current.next()):$('ul#testimonials li:first'));next.css("opacity","0.0").addClass('show').animate({opacity:1.0},1000);current.animate({opacity:0.0},1000).removeClass('show');};function theBadRotator(){$('ul#testimonials li').css("display","none");var testlen=$('ul#testimonials li').length;var testrand=Math.floor(Math.random()*testlen)+1;$("ul#testimonials li:nth-child("+testrand+")").addClass('show').css("display","block");$('div#text').text("testlen="+testlen+", testrand="+testrand);setInterval('rotateBad()',8000);}
function rotateBad(){var current=($('ul#testimonials li.show')?$('ul#testimonials li.show'):$('ul#testimonials li:first'));var next=((current.next().length)?((current.next().hasClass('show'))?$('ul#testimonials li:first'):current.next()):$('ul#testimonials li:first'));next.css("display","block").addClass('show');current.css("display","none").removeClass('show');};$(document).ready(function(){if(badBrowser){theBadRotator();}else{theRotator();}});