function newQuote(categories, linkphrase, id, strayurl, multi, offset, sequence, timer, disableaspect, loading, contributor){
        testimonialsP = document.getElement(".stray_quote-" + id + " p");
        testimonialsP.setStyle('color','#bbb');
        testimonialsDiv = document.getElement(".stray_quote-" + id );
        new Request({
                method: "post",
                url: strayurl + "inc/stray_ajax.php",
                data: "action=newquote&categories=" + categories + "&sequence=" + sequence + "&linkphrase=" + linkphrase + "&widgetid=" + id + "&multi=" + multi + "&offset=" + offset + "&disableaspect=" + disableaspect + "&timer=" + timer + "&contributor=" + contributor,
                onComplete: function(response) { testimonialsDiv.set("html", response); testimonialsP.setStyle('color','#565656'); }
        }).send();

}

