var J = jQuery.noConflict();

J(document).ready(
function()
{
	J("#fb").mouseenter(function()
	{
		J(this).stop().animate({right: 0}, "normal");
                J("#nk").stop().animate({right: -240}, "normal"); // schowanie NK (zasłania)
                
	}).mouseleave(function()
	{
		J(this).stop().animate({right: -205}, "normal");
                J("#nk").stop().animate({right: -205}, "normal"); // przywrócenie NK
	});;
        

	J("#nk").mouseenter(function()
	{
		J(this).stop().animate({right: 0, top: 200}, "normal");
	}).mouseleave(function()
	{
		J(this).stop().animate({right: -205, top: 320}, "normal");
	});;

});
