$(function(){
	var sh=$(".sidebar").height();
	var ch=$(".content").height();
	
	if (sh>ch) $(".content").css('min-height', sh + 'px');
});
