

$(document).ready(function(){ 				  
	
//Clean up TinyMCE - Removes empty <P> Tags and <P> Tags containing only <br/>
	$("#mainContent p br:only-child").remove();
	//$("#mainContent p:empty").remove();

//Clean up TinyMCE - Removes any <br/> tags from empty webblerimage DIVS
	$("div.webblerimage:empty").remove();
	$("div.webblerimage br:only-child").remove();

});