
$(function() {
	make_corners_rounded();
	$(window).load(function(){
		adjust_layout_newslike();
	});
});

function adjust_layout_newslike() {
	var content_area_height = $('div#content').height() + 5;
	// First column
	$('div#newslike_tags').height(content_area_height - 20);
	// Second column
	var news_articles_must_height = content_area_height - $('div#news_features').outerHeight() - 25;
	$('div#newslike_articles').height(news_articles_must_height);
	// Third column
	$('div#side_banners').height(content_area_height - 15);
}