$.noConflict();

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