/*

	easyListSplitter 1.0.1 - jQuery plugin sample
	Created by Andrea Cima Serniotti - http://www.madeincima.eu

*/


$(document).ready(function () {
	
		$('.column').easyListSplitter({ 
			colNumber: 2 // Insert here the number of columns you want. Consider that the plugin will create the number of cols requested only if there's enough items in the list.
		
		});

});

