$(document).ready(function()
{

	$(".sw1 a").click(function()
	{

		$(".se1").toggle();

	});

	$(".se1 a").click(function()
	{

		var text = $(this).find(".value").html();
		$(".sw1 .iin").html(text);
		$(".se1").hide();
		var msg = $(this).find(".ins").html();
		$("#limit").attr('value', msg);
		self.document.forms.vypis_b.submit();

	});

	$(document).bind('click', function(e)
	{

		var $clicked = $(e.target);

		if (! $clicked.parents().hasClass("dr1"))
		$(".se1").hide();

	});

	$(".sw2 a").click(function()
	{

		$(".se2").toggle();

	});

	$(".se2 a").click(function()
	{

		var text = $(this).find(".value").html();
		$(".sw2 .iin").html(text);
		$(".se2").hide();
		var msg = $(this).find(".ins").html();
		$("#sort").attr('value', msg);
		self.document.forms.vypis_b.submit();


	});

	$(document).bind('click', function(e)
	{

		var $clicked = $(e.target);

		if (! $clicked.parents().hasClass("dr2"))
		$(".se2").hide();

	});

})
