﻿/// <reference path="/Scripts/jquery-1.3.2-vsdoc2.js" />

/* author  : 이경렬                        *
 * explain : Table css control js파일      *
 * remark  : 절대 참고로도 사용하지 말것.  */

$(function() {
    $('#Board tr').each(function() {
    $(this).children(":first").css("border-left", "none");
    $(this).children(":last").css("border-right", "none");
    });
    
    $('#KDAExhBoard tr').each(function() {
        $(this).children(":first").css("border-left", "none");
        $(this).children(":last").css("border-right", "none");
    });

});
