
function winOpen (url,width,height,winName) {
	window.open(url, winName, 'left=0,top=0,width=' + width + ',height=' + height + ',status=0,scrollbars=0,menubar=0,location=0,toolbar=0,resizable=0');
}

function winClose () {
	window.close();
}

$(function() {  
  $('#sidebar .l-nav-box ul li:last-child').addClass('btm');
  $('.top-right ul li:last').addClass('btm');
  $('.course .sec-02 .l-box dl dd:last').addClass('btm');
  $('.course .sec-03 .cur dl:last-child').addClass('btm');
  
  $('.course .detail .sec-01 ul li:even').addClass('even');
  $('.course .detail .sec-01 ul li:odd').addClass('odd');
  $('.course .detail .sec-01 ul li:first').addClass('fst');
  $('.course .detail .sec-01 ul li:last').addClass('lst');
  $('.course .detail .sec-02 table tr:last td').addClass('btm');
  $('.course .detail .sec-02 table td:nth-child(4)').addClass('sp');
  $('.course .detail .sec-02 table th:last-child').addClass('r');
  $('.course .detail .sec-02 table td:last-child').addClass('r');
  $('.course .detail .sec-02 table td:nth-child(2)').addClass('co-1');
  $('.course .detail .sec-02 table td:nth-child(6)').addClass('co-1');
  $('.course .detail .sec-02 table td:nth-child(3)').addClass('co-2');
  $('.course .detail .sec-02 table td:nth-child(7)').addClass('co-2');
  
  $('.course .recruitment table tr:last-child td').addClass('btm');
  $('.course .recruitment table th:last-child').addClass('r');
  $('.course .recruitment table td:last-child').addClass('r');
  
  $('.open-campus table th:last-child').addClass('r');
  $('.open-campus table td:last-child').addClass('r');
  $('.open-campus table tr:last-child td').addClass('btm');
  $('.open-campus .cooking table tr:last-child th').addClass('btm');
  $('.open-campus .cooking table tr:first-child th').addClass('top');
  $('.open-campus .cooking table tr:first-child td').addClass('top');
  
  $('.campus-life .support table th:last-child').addClass('r');
  $('.campus-life .support table td:last-child').addClass('r');
  $('.campus-life .support table tr:last-child td').addClass('btm');
  
  $('.career-guide .sec-04 .l-box p:last-child').addClass('btm');
  
  $('.faq .sec-02 div:last').addClass('btm'); 
});


