$(window).load(function(){
var windowWidth = $(window).width(),
targetWidth = 800
$planWp = $('.plan-wp');
var functionJs = function (){
windowWidth = $(window).width();
//ç”»é¢ã‚µã‚¤ã‚ºã«ã‚ˆã£ã¦æŒ¯ã‚Šåˆ†ã‘
if (windowWidth >= targetWidth) {
$planWp.find('div ul').autoHeight({ column:3, height:'height', reset:'reset'});
} else {
$planWp.find('div ul').autoHeight({ column:2, height:'height', reset:'reset'});
}
}
functionJs();
//リサイズ時ã®å‡¦ç†
$(window).resize(function() {
var timer = false;
if (timer !== false) { clearTimeout(timer); }
timer = setTimeout(function() {
functionJs();
}, 100);
});
});