/*
 * For the collection of jQuery plug-ins with project
*/

$(document).ready(function() {
    var size = $("#archives > p").size();
 $("#archive_col_1 > p").each(function(index){
  if (index >= size/2){
   $(this).appendTo("#archive_col_2");
  }
 });
  });

