var rotate_quote_cycle=1;var quote_amount=10;function rotatequote(){var a=rotate_quote_cycle;rotate_quote_cycle++;if(rotate_quote_cycle>quote_amount){rotate_quote_cycle=1}$("#rotate_quote"+a).fadeOut("fast",function(){$("#rotate_quote"+rotate_quote_cycle).fadeIn()})}$(document).ready(function(){var a=setInterval(rotatequote,10000)});
