﻿/// <reference path="/Scripts/jquery-1.3.2-vsdoc2.js" />

/* author  : 이경렬                        *
 * explain : main content size js파일      *
 * remark  : 절대 참고로도 사용하지 말것.  */

$(function() {
    $('#left').height() > $('#content').height() ? $('#content').height($('#left').height()) : $('#left').height($('#content').height());
});
