$(document).ready(function(){ startFader(); $('#quote').show(); }); function startFader(){ $('#quote-div').fadeOut(3000).fadeIn(7000, function(){ quotescollection_refresh(0, 2, 1, 0); }); } function quotescollection_refresh(instance, exclude, show_author, show_source){ divid = '#quotescollection_randomquote-' + instance; $.ajax({ type: "POST", url: "/wp-content/plugins/quotes-collection/quotes-collection-ajax.php", data: 'refresh='+instance+'&exclude='+exclude+'&show_author='+show_author+'&show_source='+show_source+'&rnd='+ Math.random()*50000, dataType: "text", success: function(text){ $(divid).html(text); startFader(); } }); }