function window_size_switch_func() {
if($(window).width() >= 768) {
// product option switch -> table
$('#prd-opt-table').html($('.prd-opt-table').html());
$('#prd-opt-table table').addClass('table table-bordered');
$('#prd-opt-select').empty();
} else {
// product option switch -> select
$('#prd-opt-table').empty();
if($('#prd-opt-select > *').size() == 0) {
$('#prd-opt-select').append($('.prd-opt-select').html());
}
}
}
window_size_switch_func();
$(window).load(function () {
$('.history-unit').tile();
});
$(window).resize(function () {
window_size_switch_func();
$('.history-unit').tile();
});
});