$(function() {
	var fbtimer = null;
    var fbon = false;
    $hideFacebox = function() {
        $("#facebox").removeClass('shown');
    } 
    $("#facebook-likebox .button-facebook").hover(
		function() {
		    if ($("#facebox").hasClass('shown')) return;
		    $("#facebox").addClass('shown').animate({ left: '-1px' }, "600");
		},
		function() {
		}).click(
		function() {
		    if (!$("#facebox").hasClass('shown')) return;
		    $("#facebox").animate({ left: '-320px' }, "600", $hideFacebox);
		});
    
});
