/**
 * @author Owner
 */
$(document).ready(function(){
    // ページの読み込みが完了した後に実行するコード
	var content;
	if($(document).is(".narrowcolumn"))
		content = $(".narrowcolumn");
	else
		content = $(".widecolumn");
	
	var maxheight = content.height();

	if($("#sidebar").height() < maxheight) {
		$("#sidebar").height(maxheight);
	} else {
		content.height($("#sidebar").height());
	}
});