//www.PoliGrafNet.eu
//Konrad Kądzielawa

   $(document).ready(function(){
        $("#fblikebox").hover(function(){
        $(this).stop(true,false).animate({bottom: 0}, 500);
        },function(){
             $("#fblikebox").stop(true,false).animate({bottom: -270}, 500);
		});
		
		$("#fblikeboxright").hover(function(){
        $(this).stop(true,false).animate({right: 0}, 500);
        },function(){
             $("#fblikeboxright").stop(true,false).animate({right: -270}, 500);
		});
		
		$("#fblikeboxleft").hover(function(){
        $(this).stop(true,false).animate({left: 0}, 500);
        },function(){
             $("#fblikeboxleft").stop(true,false).animate({left: -270}, 500);
		});
		
	    $("#fblikeboxtop").hover(function(){
        $(this).stop(true,false).animate({top: 0}, 500);
        },function(){
             $("#fblikeboxtop").stop(true,false).animate({top: -270}, 500);
		});
		
     });
