$(function(){
    $ft = $('#facetab');
    $ft.css("right","-210px").hover(
        function () {
            $(this).stop(true, false).animate({
                right: "0px"
            }, 400 ).addClass("closed_tab");
        },
        function () {
            $(this).stop(true, false).animate({
                right: "-210px"
            }, 400 ).removeClass("close_tab");
        }
        );
});
