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