$(document).ready(function() {
	$("div").each(function() {
		var target = "Pane";
		if (this.id && this.id.indexOf(target) == this.id.length - target.length && this.getAttribute("style")) {
			this.removeAttribute("style");
			$(this).addClass("EditMode");
		}
	});
});
