$().ready(function() {
  $("h3, .post_simple h1, .post_simple h2").not('.title').wrapInner("<span></span>");
  
  $('.post_content img').not('.noborder').each(function() {
		if( $(this).css('float') == 'right') { 
			$(this).wrap('<span class="imgOverlay floatRight"></span>');
	  	} else if ( $(this).css('float') == 'left') { 
			$(this).wrap('<span class="imgOverlay floatLeft"></span>');
	  	} else {
			$(this).wrap('<span class="imgOverlay"></span>');
	  	}
		
		 $(this).after('<span class="overlay"></span>');
		 $(this).removeAttr('style').removeAttr('align');
	});
  $('.post_img_left img').not('.noborder').each(function() {
		$(this).wrap('<span class="imgOverlay floatLeft"></span>');	
		 $(this).after('<span class="overlay"></span>');
		 $(this).removeAttr('style').removeAttr('align');
	});
  $('.post_img_right img').not('.noborder').each(function() {
		$(this).wrap('<span class="imgOverlay floatRight"></span>');	
		 $(this).after('<span class="overlay"></span>');
		 $(this).removeAttr('style').removeAttr('align');
	});
  
 });