/*

	easyListSplitter 1.0.2 - jQuery Plugin
	Created by Andrea Cima Serniotti - http://www.madeincima.eu

*/


$(document).ready(function () {
	
		$('.ordenar2').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.
		});
		
		$('.ordenar3').easyListSplitter({ 
			colNumber: 3 // 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.
		});
		
		$('.ordenar4').easyListSplitter({ 
			colNumber: 4 // 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.
		});
		
		$('.ordenar5').easyListSplitter({ 
			colNumber: 5 // 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.
		});
});
