function fbtaboff() { $('.fb .fb-tab').unbind('mouseover'); }
function fbtabon() { $('.fb .fb-tab').bind('mouseover', fbshow); }
function fbhover() { $('.fb .fb-like-box').bind('mouseout', fbhide); }
function fbshow() { $('.fb .fb-like-box').show('slow', fbtaboff); }
function fbhide() { $('.fb .fb-like-box').hide('slow', fbtabon); }
function fbon() { fbtabon(); fbhover(); }
$(fbon);

