﻿    $(document).ready(function() { 
    	$('span.quote-right').each(function(index) { 
		var $parentParagraph = $(this).parent('p'); 
    	$parentParagraph.css('position', 'relative'); 
    	$(this).clone() 
    		.addClass('pullquote-right') 
			.prependTo($parentParagraph); 
    	  }); 
    	$('span.quote-left').each(function(index) { 
    	var $parentParagraph = $(this).parent('p'); 
    	$parentParagraph.css('position', 'relative'); 
    	$(this).clone() 
    		.addClass('pullquote-left') 
    		.prependTo($parentParagraph); 
    	});
    }); 
