
$(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
	$('div#newslike_articles').height(content_area_height - 20);
	// Third column
	$('div#side_banners').height(content_area_height - 15);
}