$(document).ready(function(){				$("#galeria a").hover(function() {	  $(this).children("span").show();	}, function() {	  $(this).children("span").hide();	});			$("#gwiazda").mouseenter(function() {			$(this).children('.opis').stop(true,true).fadeIn();	});		$("#gwiazda").mouseleave(function() {			$(this).children('.opis').stop(true,true).fadeOut();	});});