// JavaScript Document

//add a pull quote for span pq

	$(document).ready(function() {
		$('span.pq').each(function() {
			var quote=$(this).clone();
			quote.removeClass('pq');
			quote.addClass('pullquote');
			$(this).before(quote);
		});
		
	});
