var index=0;$(document).ready(function(){$('#quotes > div').hide();changeQuote()});function changeQuote(){$('#quotes > div:eq('+index+')').fadeOut('slow');index=(index==$('#quotes > div').length-1)?0:index+1;$('#quotes > div:eq('+index+')').fadeIn('slow');setTimeout('changeQuote()',7500)}
