// po načtení stránky
$(function () {
	
	// #filter-spinner přidán do jquery.nette.js
	
	$('form.filter-ajax').live('submit', function (event) {
		
		event.preventDefault();
		
		var width = 620;
		var height = $('.proditems').innerHeight();		
		var position = $('.proditems').offset();
		
		$("#filter-spinner").show().width(width).height(height).css({ 
			position: "absolute",
			top: position.top + 5,
			left: position.left + 15
		});
    		
		$(this).ajaxSubmit();		
		return false;
	});
	
	$('form.filter-ajax :submit').live('click', function (event) {
		
		event.preventDefault();
		
		var width = 620;
		var height = $('.proditems').innerHeight();		
		var position = $('.proditems').offset();
		
		
		$("#filter-spinner").show().width(width).height(height).css({ 
			position: "absolute",
			top: position.top + 5,
			left: position.left + 15
		}); 
    		
		$(this).ajaxSubmit();		
		return false;
	})
	
	$('form.filter-ajax input[type=checkbox]').live('click', function (event) {
		$(this).submit();				
	});	

});
