$(function(){
    $("#lb-wrapper").css("left","-210px");
 
	$("#lb-wrapper").hover(
  		function () {
    		$("#lb-wrapper").stop().animate({left: "0px"}, 500 );
        	$(this).addClass("lb-opened");
  		},
  		function () {
    		$("#lb-wrapper").stop().animate({left: "-210px"}, 500 );
        	$(this).removeClass("lb-opened");
  		}
	);
});
  
