/*

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

*/


$(document).ready(function () {
	
		$('ul.topmenu ul.submenu').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.
		});

});

