var photoWindowCounter = 0;

$( function() {
	$('.print').attr('onclick', 'window.print()');

    $('.autosubmit').change( function() {autosubmitForm(this)});
	createTexyla();

	var confirm = new Confirmation();
	confirm.init();

	var jsw = new JsWindow;
	jsw.init();

    var changer = new Changer();
	changer.init();

	dp = new DatePicker();
	dp.init();
	
	var ajaxLink = new AjaxLink();
	ajaxLink.init();

//=== Vyhledavaci formular =====================================================

//--- Zobrazeni fieldu
	$('.specify-toggle a').click( function() {
		$($(this).attr('href')).show();
		$(this).fadeOut('fast');
		return false;
	});

//--- Zruseni fieldu
	$('img[alt=remove]').click( function() {
		$(this).parents('tr').fadeOut('fast');
		$(this).parents('tr').find('input[type=text],select').val('');
		$(this).parents('tr').find('input[type=checkbox]').attr('checked', '');

		$("a[href=#" + $(this).parents('tr').attr('id') + "]").show();
	});

//---automaticke odeslani formulare po zmene typu vypisu (change select)
	$('select.sel-autosubmit').change(function() {
		$(this).parents('form').submit();
	});


//=== Nahledy obrazku ==========================================================
	$('.imagePreview').click( function() {
		photoWindowCounter++;
		window.open($(this).attr('href') + "?js=1", 'window_' + photoWindowCounter, 'width=1,height=1');
		return false;
	});
});
