
$(function() {
	make_corners_rounded();
	$(window).load(function(){
		adjust_layout_photogallery();
	});
});

function adjust_layout_photogallery() {
	var content_area_height = $('div#content').height() + 5;
	var photogallery_photoinfo_must_height = content_area_height - $('div#photogallery_main_area_single').outerHeight() - 25;
	// First column
	$('div#photogallery_comments').height(photogallery_photoinfo_must_height - 10);
	// Second column
	$('div#photo_info').height(photogallery_photoinfo_must_height);
	// Third column
	$('div#photo_cats').height(photogallery_photoinfo_must_height);
	// Fourth column
	$('div#side_banners').height(content_area_height - 15);
}

