jQuery.noConflict();
jQuery(document).ready(
	function()
	{
		jQuery("#fb-slide").mouseenter(function()
		{
			jQuery(this).stop().animate({right: 0}, "normal");
		}).mouseleave(function()
		{
			jQuery(this).stop().animate({right: -205}, "normal");
		});;
		
	}
);
