$(document).ready(function() {
		/*facebook*/
	   $("#fb").mouseenter(function() {
		   $(this).stop().animate({right:0, opacity:1}, 1000).css('z-index', '11');
	   });
	   $("#fb").mouseleave(function() {
		   $(this).stop().animate({right:-192, opacity:0.70}, 400).css('z-index', '10');
	   });
	   /*google plus*/
	   $("#g").mouseenter(function() {
		   $(this).stop().animate({right:0, opacity:1}, 1000).css('z-index', '11');
	   });
	   $("#g").mouseleave(function() {
		   $(this).stop().animate({right:-86, opacity:0.70}, 400).css('z-index', '10');
	   });
	   /*wykop*/
	   $("#w").mouseenter(function() {
		   $(this).stop().animate({right:0, opacity:1}, 1000).css('z-index', '11');
	   });
	   $("#w").mouseleave(function() {
		   $(this).stop().animate({right:-86, opacity:0.70}, 400).css('z-index', '10');
	   });
	   /*nk*/
	   $("#nk").mouseenter(function() {
		   $(this).stop().animate({right:0, opacity:1}, 1000).css('z-index', '11');
	   });
	   $("#nk").mouseleave(function() {
		   $(this).stop().animate({right:-192, opacity:0.70}, 400).css('z-index', '10');
	   });
	 });
