jQuery(document).ready(function() {
	
	//  add new section on click and reinit sort
	jQuery('#add_section').click(function() {
		var sectionInput = '<li><input name="menu_sections[]" value="" size="30" type="text" /></li>';
		jQuery('#menu_sections').sortable().append(sectionInput)
	}); 
	

});
