$(function(){
	
	$('blockquote')
		.find('p:first')
			.prepend("<span class='quote'>&#8220</span>")
				.append("<span class='quote'>&#8221</span>")
					.end()
		.find('p:odd')
			.addClass("cite")
				.prepend("&ndash; ");

	$('#showcase .left').cycle({
		fx: 'fade',
		random: 1, 
		timeout: 8000,
		speed: 1000

	});
	$('#showcase .right').cycle({
		fx: 'fade',
		random: 1, 
		timeout: 8000,
		speed: 1000,
		delay: 4000

	});

});
