// JavaScript Document
$(function() {
		$( "button, input:submit, a", ".add_button" ).button({
            icons: {
                primary: "ui-icon-plusthick",
            }
		});
		$( "button, input:submit, a", ".submit_button" ).button();	
		$( "button, input:submit, a", ".send_question" ).button();			
		$("#tabs").tabs();
		$( "#dialog" ).dialog( "destroy" );	
		$( "#novy_zaznam" ).dialog({
			height: 140,
			width:540,
			modal: true,
		});
		$( "#editacia" ).dialog({
			width:1000,
			modal: true,
			position: 'top',
		});
		$( "#ceny" ).dialog({
			width:1000,
			modal: true,
			position: 'top',
		});
		$( "#datepicker" ).datepicker();
		$( "#datepicker1" ).datepicker();
		$( "#datepicker2" ).datepicker();
			    $("#test-list").sortable({
			handle : '.handle',
			update : function () {
				var order = $('#test-list').sortable('serialize');
				$("#info").load("includes/process-sortable.php?"+order);
			}
		});	
		
});
