$(document).ready(function() {
	
	// PullQuote - generate the pullquote
	$('strong.PullQuoteSource').each(function(){
	
		$(this).parent().prepend('<q class="PullQuote">'+$(this).text()+'</q>');
		
	});
	// PullQuote Highlighting
	$('.PullQuote').hover(function(){
		$(this).parent().find('.PullQuoteSource').addClass('PullQuoteSourceHighlight');		
	},function(){
		$(this).parent().find('.PullQuoteSource').removeClass('PullQuoteSourceHighlight');
	});
	
 });
