var $fb = jQuery.noConflict();
$fb(document).ready(
function()
{
	$fb("#fb_slide_box_right").mouseenter(function()
	{
		$fb(this).stop().animate({right: 0}, "normal");
	}).mouseleave(function()
	{
		$fb(this).stop().animate({right: -205}, "normal");
	});;
	
});

$fb(document).ready(
function()
{
	$fb("#fb_slide_box_left").mouseenter(function()
	{
		$fb(this).stop().animate({left: 0}, "normal");
	}).mouseleave(function()
	{
		$fb(this).stop().animate({left: -205}, "normal");
	});;
	
});
	
