jQuery(document).ready(function  () {
  jQuery(".columns_2").each(function () {
    jQuery(this).column({count:2})
  });
  jQuery(".columns_3").each(function () {
    jQuery(this).column({count:3})
  });
});

