this.tooltip = function(){	
	$(".tooltip").change(function(){
		var contenerHeight = $(".newsContainer").height();
		var naviHeight = $(".navi").height();
		
		$("#tooltip")
			.show()
			.html(this.value)
			.css("margin-bottom", "15px");
			
		$("#partnerzy")
			.css("top", contenerHeight - naviHeight + 40 + "px")
			.css("margin-bottom", contenerHeight - naviHeight + 60 + "px");
    });			
};

$(document).ready(function(){
	tooltip();
});
