$(document).ready(function () {
	$(".test").hover(			
	function() {
				$(this).animate({
					opacity: 1, //przezroczystość elementu na 50%
					paddingTop: "0em" // małe przesunięcie treści
								}, 200 )
		},
	function() {
					$(this).animate({
						opacity: 0.5, //przezroczystość elementu na 50%
						paddingTop: "1em" // małe przesunięcie treści
									}, 200 ) //czas animacji w milisekundach
			   }
);
$(".tooltip").tooltip({

	track: true,
	positionLeft: true,
	delay: 0,
	showURL: false,
	bodyHandler: function() {
		return $($(this).attr("href")).html();
	} ,showURL: false
});
});
