$(function(){ settop(); $('.btnbox dl dt').on('click',function(){ $(this).toggleClass('open'); $(this).next('dd').slideToggle(300); }); }); $(window).load(function(){ settop(); }); $(window).resize(function () { settop(); }); $(window).on('orientationchange', function(){ settop(); }); function settop(){ var seth = $("#contents > ul > li:nth-child(1)").outerHeight(); var seth2 = seth - 20 - $("#contents > ul > li:nth-child(6) h2").outerHeight() - 10; $("#contents > ul > li:nth-child(6)").css("height",seth + "px"); $("#contents > ul > li:nth-child(6) div.img").css("height",seth2 + "px"); $('ul.topmenubox > li').matchHeight(); objectFitImages('ul.topmenubox > li .img img'); }