$(document).ready(function(){
    $("p.quote").everyTime(16000, function(event){
        var id = $(this).attr('id');
        id = id.replace(/quote/, "");
        $.ajax({
		type: "GET",
                dataType: "json",
		url: "/quote/random/",
                success: displayQuoteInfo
        });
    });
});

displayQuoteInfo = function(json) {
        $("#sidebar").fadeOut(1500)
        $(this).oneTime(1800, function(event){
        	var obj = json[0].fields;
 		$("#sidebar").html('<p id="quote'+obj.id+'" class="p2 quote">"'+obj.quote+'" <br /><strong>'+obj.quoter+'</strong> - '+obj.name+'</p>');
        	$("#sidebar").fadeIn(1500);
        });
};
