// Sidebar random quotes generator.
jQuery(document).ready(function($){
// Prepare variables for use later on.
var quoteContent;
var author = '
';
var quote = '
';
var closing = '
';
$('.sidebar .quotes p').each(function(){
quoteContent = $(this).html().replace('[quote]', quote).replace('[/quote]', closing).replace('[author]', author).replace('[/author]', closing);
$(this).addClass('quote').html(quoteContent);
$('br', this).remove(); // Removes both
and
.
});
$('.sidebar .quotes .sidebox-content > *').wrapAll('
');
$('.sidebar .quotes .quotesWrapper').cycle({
fx: 'fade',
timeout: 8000
});
});