$(document).ready(
	function () {
		if (screen.width > 1024) {
			$('.stickyLeft, .stickyRightTop, .stickyRightBottom').show();
		}
		if (screen.width > 1280) {
			$('.stickyRightMid').show();
		}
		$('#banner object').each(function () {
			$(this).parent().html($(this).parent().html());
		});
	}
);