$(document).ready(function(){
	$(".mate-dotaz img, .mate-dotaz .online, .stav div").hover(
		function(){
			var helpWindow = $(this).parent().children(".help-window").get(0);
			//helpWindow.style.display = "inline";
			$(helpWindow).stop();
			$(helpWindow).css("opacity", "1.0");

			$(helpWindow).fadeIn(300);
		},
		function(){
			var helpWindow = $(this).parent().children(".help-window").get(0);
			$(helpWindow).stop();
			$(helpWindow).fadeOut(300);
		}
	);
});

