$('document').ready(function () {
	$('.ds_content').bind('load', function() {
		/*
		$('div.zone4_3, div.recnav1, div.zone4_4').wrapAll('<div class="main_container"/>');
		$('div.recnav1, div.zone4_4').wrapAll('<div class="right_container">');
		*/

		/* vänstra headers */
		$('.zone4_3, .right_zones .Module').find('.green, .black, .blue, .yellow').each(function() {
				$(this).css('position', 'absolute')
				.css('margin-left', '-' + $(this).parents('.Module').css('padding-left'))
				.after('<div style="height:' + $(this).outerHeight() + 'px"/>');
				if($(this).hasClass('wide'))
				{
					$(this).css('width', $(this).parents('.Module').innerWidth() - $(this).parents('.Module').css('padding-right').replace('px', '') + 'px');
				}
			});
		$('.zone4_3').find('.wide').css('padding-right', '15px');
		if($('div.zone4_4').html() == '&nbsp;')
			$('div.zone4_4').remove();
	});
});
