$(document).ready(function () {
	$("#twitter").getTwitter({
		userName: "WUDTour",
		numTweets: 3,
		loaderText: "Ładuję wpisy...",
		slideIn: true,
		slideDuration: 750,
		showHeading: false,
		headingText: "WUDTour Live",
		showProfileLink: false,
		showTimestamp: true
	});

	$("#map_container ul li a").hover( function () {
		$(this).next(".tip").fadeIn("fast");
	}, function () {
		$(this).next(".tip").fadeOut("fast");
	});
});