/**
 * 
 */

var hideFB = false;


function showLikebox(){
	$('#fb_button').css('left','-350px');
	$('#fb_box').show();
	
}

function hideLikebox(){
	if (hideFB){
		$('#fb_button').css('left','-52px');
		$('#fb_box').hide();
	}
}

$(document).ready(function() {
	$('#fb_button').mouseenter(function(){
		showLikebox();
		hideFB = false;
	});
	$('#fb_button').mouseleave(function(){
		hideFB = true;
		setTimeout(hideLikebox, 500);
	});
	$('#fb_box').mouseover(function(){
		hideFB = false;
	});
	$('#fb_box').mouseleave(function(){
		hideFB = true;
		setTimeout(hideLikebox, 500);
	});
});
