function blog(){
	this.round_corners_bottom = function(){
		jQuery('#content').append('<div id="round_corners_bottom" />');
	}
	this.equal_columns = function(){
		($('#center').height() > $('#right').height()) ? $('#center, #right').css('minHeight',$('#center').height()) : $('#center, #right').css('minHeight',$('#right').height())
	}
}
jQuery(document).ready(function(){
	var site = new blog();
	site.round_corners_bottom();
	site.equal_columns();
});
