
var fbboxto;

(function($) {
    $(function() { //on DOM ready
        $("#scroller").simplyScroll({
            autoMode: 'loop',
            frameRate: 12,
            speed: 1
        });
        
  	$('#fbbox').mouseover(function()
  	{
  			clearTimeout(fbboxto);
  			$(this).stop().animate({right:0});
  	});
    $('#fbbox').mouseout(function()
  	{
  			fbboxto = setTimeout(FBBoxHide, 200);
  	});         
        
    });
})(jQuery);


function FBBoxHide()
{
	$('#fbbox').stop().animate({right:-205});
}
