$(document).ready(
function()
{
	$("#fb1_area").click(function()
	{
		document.getElementById("fb").style.visibility="hidden";
		$("#fb1").stop().animate({right: 0}, "normal");
		
	})
	$("#fb1").mouseleave(function()
	{
		
		$("#fb1").stop().animate({right: -215}, "normal");
		document.getElementById("fb").style.visibility="visible";
	});;
	
});
	
