$(document).ready(
function()
{
	$("#fb").mouseenter(function()
	{
		$(this).stop().animate({right: 0}, "normal");
      // Chowanie reszty zakładek
      $('#nk').stop().animate({right: -232}, "normal");
      $('#gplus').stop().animate({right: -162}, "normal");
      $('#allegro').stop().animate({right: -232}, "normal");
      
                
	}).mouseleave(function()
	{
		$(this).stop().animate({right: -205}, "normal");
      // Przywracanie reszty zakładek
      $('#nk').stop().animate({right: -205}, "normal");
      $('#gplus').stop().animate({right: -135}, "normal");
      $('#allegro').stop().animate({right: -205}, "normal");
	});;
        

	$("#nk").mouseenter(function()
	{
		$(this).stop().animate({right: 0}, "normal");
      // Chowanie reszty zakładek
      $('#gplus').stop().animate({right: -162}, "normal");
      $('#allegro').stop().animate({right: -232}, "normal");
	}).mouseleave(function()
	{
		$(this).stop().animate({right: -205}, "normal");
      // Przywracanie reszty zakładek
      $('#gplus').stop().animate({right: -135}, "normal");
      $('#allegro').stop().animate({right: -205}, "normal");
	});;
   
	$("#gplus").mouseenter(function()
	{
		$(this).stop().animate({right: 0}, "normal");
	}).mouseleave(function()
	{
		$(this).stop().animate({right: -135}, "normal");
	});;
   
	$("#allegro").mouseenter(function()
	{
		$(this).stop().animate({right: 0}, "normal");
	}).mouseleave(function()
	{
		$(this).stop().animate({right: -205}, "normal");
	});;

});

