
$(document).ready(function()
{		
		/*
		$("#menu-list").sortable
		({
			'items':'li',
			'placeholder':'placeholder',
			'nested':'ul',
			'cursor': 'move'
		});
		*/
		function ShowMessage(data)
		{
			sNotify.addToQueue(data);		
		};
		//izvaditi sve list_item - e
		//list_item s brojem je parent
		//list_item bez icega je root	
		$('#serialize').click(function(event)
		{
			var order=$('#menu-list').sortable('serialize');
			//alert(order);			
			//$("#info_div").load("admin_panel/process-sortable2.php?"+order);
			$.get("admin_panel/process-sortable2.php?"+order, ShowMessage);			
			//var message=$("#info_div").html();
			//$("#info_div").show();
		});
	
		$("#thaccordion IMG").lazyload(
		{
			placeholder : "images/loading.gif", 
			failurelimit : 0, 
			threshold : 150, 
			cache: false, 
			container: $("#thaccordion")
		});		
		
		  $(document).ready(function() 
		  {
			$("#admin_tabs").tabs();
		  });
		
});
