function showQuote(instant){
    var quotes = [
        ["I'm definitely impressed with the implementation of web previews in Interclue", "ReadWriteWeb"],
        ["it may very well be one of the best Firefox add-ons that I have seen.", "Cybernet News"],
        ["The degree to which this application can be customized is astounding!", "Bill Webb, Lockergnome"],
        ["It's not that annoying as the famous Snap tooltip and it certainly provides much more information about the page...a brilliant tool.", "Google Operating System"],
        ["This is a highly flexible extension which could replace any other preview link extension that you might be using.", "gHacks"],
        ["Essentially the goal of a link previewer is to save you clicks. But the way Interclue has been designed, it saves you a lot of time as well.", "Linux.com"]
    ];
    
    var html = "<q>&quot;"+ quotes[showQuote.index][0] +"&quot;</q>";
    html += "<br /><span> - "+ quotes[showQuote.index][1] +"</span>";
    //wrap in a link to the buzz page
    html = '<a href="buzz.html">'+ html +'</a>';
    
    showQuote.index++;
    if (showQuote.index >= quotes.length){
        showQuote.index = 0;
    }
    
    if (instant === true){
        
        document.getElementById("interclue-quotes").innerHTML = html;
    }
    else {
        $("#interclue-quotes").fadeOut(500, function(){
            $("#interclue-quotes").html(html).fadeIn();
        });
    }
}

showQuote.index = 0;

setInterval(showQuote, 7000);
