jQuery(document).ready(function($) {
	$('#header .site-description').each(function() {
		$(this).html($(this).text().replace('.', '.<br />').replace('®', '<sup>&reg;</sup>'));
	});
    
    $('#quotes p').hide();
    var numQuotes = $('#quotes p').length;
    var randomNum = Math.floor(Math.random()*numQuotes);
    $('#quotes p').eq(randomNum).show();

	$('#quotes p');
	setInterval(function(){
		$('#quotes p').filter(':visible').fadeOut(500,function(){
			if($(this).next('#quotes p').size()){
				$(this).next().fadeIn(500);
			}
			else{
				$('#quotes p').eq(0).fadeIn(500);
			}
		});
	},7000);	
	

});
