function initQuote(theUrl,divid){
	theUrl = (!theUrl)?'no page':theUrl;
	jQuery.getJSON(theUrl,function(response) {
		jQuery(divid).fadeOut("fast",function() {
			var newhtml = '<div class="quotescollection_randomquote"><p><q>'+response.title+'</q><cite>&mdash;&nbsp;<span class="quotescollection_author">'+response.name+'</span>, <span class="quotescollection_source">'+response.source+'</span></cite></p></div>';
			jQuery(divid).html(newhtml).fadeIn("fast");	
		});
	});
}
