
	var timer = null;

	$(function(){

		if ($("#us.visible").size() == 0) {

			$("#us").hide();

			$("#menu a.uslugi").hover(
				function() { clearTimeout(timer); $("#us").stop().fadeIn('medium'); },
				function() { timer = setTimeout('$("#us").fadeOut("medium");', 500); }
			);

			$('#us').hover(
				function() { clearTimeout(timer); },
				function() { timer = setTimeout('$("#us").fadeOut("medium");', 500); }
			);

		} else {

			timer = null;
			$('#us').stop().show();

		}

		$(".jqmClose").click(function(){
			$(this).parent().parent().hide();
		})

	});

