//################################################################
//#
//# Sobczyk.EU
//#
//# =============================================================
//#
//# Author: Andrzej Sobczyk
//#         andrzej@sobczyk.eu
//# Copyright: Andrzej Sobczyk 2011
//#
//# Rozpowszechnianie lub  zmiana bez zgody autora zabronione.
//# Distribution or change without author permition is prohibited.
//#
//###############################################################
$(function (){
 $('#div_fb').hover(function(){
   $('#div_fb').stop(true, false).animate({right:'0'},'medium');
 },function(){
   $('#div_fb').stop(true, false).animate({right:'-270'},'medium');
 },500);
 return false;
});

