

$(document).ready(function(){

   $('#blockLeft #bubbleLeft').each(function(i,e){
	   	var str = $(this).html();
		//$(this).html(str.replace(/&amp;/g,'&'));
		$(this).html(str.replace(/&amp;deg;/g,'&deg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;trade;/g,'&trade;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;copy;/g,'&copy;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;reg;/g,'&reg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;apos;/g,'&#039;')); // apostrophe
		str = $(this).html();
		$(this).html(str.replace(/&amp;mdash;/g,'&mdash;')); // em-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;ndash;/g,'&ndash;')); // en-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;hellip;/g,'&hellip;')); // ellipses
		
   });
   $('#blogStackWrap p').each(function(i,e){
	   	var str = $(this).html();
		$(this).html(str.replace(/&amp;deg;/g,'&deg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;trade;/g,'&trade;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;copy;/g,'&copy;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;reg;/g,'&reg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;apos;/g,'&#039;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;mdash;/g,'&mdash;')); // em-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;ndash;/g,'&ndash;')); // en-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;hellip;/g,'&hellip;')); // ellipses
   });
   $('#blogStackWrapB p').each(function(i,e){
	   	var str = $(this).html();
		$(this).html(str.replace(/&amp;deg;/g,'&deg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;trade;/g,'&trade;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;copy;/g,'&copy;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;reg;/g,'&reg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;apos;/g,'&#039;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;mdash;/g,'&mdash;')); // em-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;ndash;/g,'&ndash;')); // en-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;hellip;/g,'&hellip;')); // ellipses
   });
   $('#subMain h1').each(function(i,e){
	   	var str = $(this).html();
		$(this).html(str.replace(/&amp;deg;/g,'&deg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;trade;/g,'&trade;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;copy;/g,'&copy;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;reg;/g,'&reg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;apos;/g,'&#039;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;mdash;/g,'&mdash;')); // em-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;ndash;/g,'&ndash;')); // en-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;hellip;/g,'&hellip;')); // ellipses
   });
   $('.resultsBlock').each(function(i,e){
	   	var str = $(this).html();
		$(this).html(str.replace(/&amp;deg;/g,'&deg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;trade;/g,'&trade;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;copy;/g,'&copy;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;reg;/g,'&reg;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;apos;/g,'&#039;'));
		str = $(this).html();
		$(this).html(str.replace(/&amp;mdash;/g,'&mdash;')); // em-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;ndash;/g,'&ndash;')); // en-dash
		str = $(this).html();
		$(this).html(str.replace(/&amp;hellip;/g,'&hellip;')); // ellipses
   });

});

