
$(function() {
	make_corners_rounded();
	$(window).load(function(){
		adjust_layout_streetfashion();
	});
});

function adjust_layout_streetfashion() {
	var content_area_height = $('div#content').height() + 5;
	// First column
	var sf_rating_must_height = content_area_height - $('div#sf_photos').outerHeight() - 95;
	$('div#sf_rating').height(sf_rating_must_height);
	// Second column
	var sf_comments_must_height = content_area_height - $('div#sf_photo_info').outerHeight() - 31;
	$('div#sf_photo_comments').height(sf_comments_must_height);
	// Third column
	$('div#side_banners').height(content_area_height - 15);
}

