$(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());
		});

		$(".show_more_button").click(function(){
			var blockId = $(this).attr('href');
			$(blockId).slideToggle(300);
			return false;
		});
	}
);
