function navigation_open(id)
{
	$(".navigation-links-toggle-"+id).slideToggle('slow');
}

$(function() {			
	var table1 = $("#ttable").ariaSorTable({ rowsToShow: 1000, pager: false, onInit: function() { demoControl();}});
	$("#destroy").click(function (event) { table1.ariaSorTable('destroy');});		
	$("#disable").click(function (event) { table1.ariaSorTable('disable');});
	$("#ui-table-control").prepend('<div id="switcher"></div><br />');
	//$('#switcher').themeswitcher();	

	$("th").addClass("ui-widget-header ui-table-text");
	$("th:last").css("width","90px");

	$("a[rel='colorbox']").colorbox({transition:"fade"});
	$("a[id='colorweb']").colorbox({width:"80%", height:"80%", iframe:true});
	
	$.datepicker.setDefaults($.extend({showMonthAfterYear: false}, $.datepicker.regional['hu']));
	$('#datepicker1').datepicker('option', {dateFormat: 'yyyy-mm-dd'});
	$("#datepicker1").datepicker();
	$('#datepicker2').datepicker('option', {dateFormat: 'yyyy-mm-dd'});
	$("#datepicker2").datepicker();
	$('#datepicker3').datepicker('option', {dateFormat: 'yyyy-mm-dd'});
	$("#datepicker3").datepicker();
	$('#datepicker4').datepicker('option', {dateFormat: 'yyyy-mm-dd'});
	$("#datepicker4").datepicker();



});		
