
$(function() {
	make_corners_rounded();
	$(window).load(function(){
		adjust_layout_blog();
	});
});

function adjust_layout_blog() {
	var content_area_height = $('div#content').height() + 5;
	// First column
	$('div#blg_articles').height(content_area_height - 20);
	// Second column
	var blg_sendnews_must_height = content_area_height - $('div#blg_tags').outerHeight() - 25;
	$('div#blg_sendnews').height(blg_sendnews_must_height);
	// Third column
	$('div#side_banners').height(content_area_height - 15);
}