// JavaScript Document
$(document).ready(function()
{ass_width();
	var x = $("#widecolumn").height();
	var y = $("aside").height();
	if (x > y)
	{			
		$("aside,#widecolumn").css("height",x);
		$("aside").css("padding-bottom","30px");
	}
	else
	{
		$("aside,#widecolumn").css("height",y);
		$("aside").css("padding-bottom","30px");
		
	}
	
	function ass_width(){	$('#widecolumn').css('width',$(window).width() - $('#narrowcolumn').width() -153 +  'px');
	$('#wrapper').css('width',$(window).width()-153+'px');

	}

	window.onresize = function(event) {ass_width();
   
}
	

$(window).load(function() {
	$(".background").fullBg();
});

	
});


