jQuery(document).ready(function() {
	jQuery('.horizontal_scroller').SetScroller({	velocity: 	 70,
											direction: 	 'horizontal',
											startfrom: 	 'right',
											loop:		 'infinite',
											movetype: 	 'linear',
											onmouseover: 'pause',
											onmouseout:  'play',
											onstartup: 	 'play',
											cursor: 	 'pointer'
										});

jQuery("#fb_show").mouseover(function(){
 jQuery("#panel").animate({marginRight:"0px"}, 400 );
 jQuery("#fb_right").animate({width:"200px", opacity:1}, 400 );
 jQuery("#fb_show").animate({width:"0px", opacity:0}, 600).hide("slow");
 });

 jQuery("#fb_right").mouseleave(function(){
 jQuery("#panel").animate({marginRight:"-200px"}, 500 );
 jQuery("#fb_right").animate({width:"0px", opacity:0}, 400 );
 jQuery("#fb_show").show("normal").animate({width:"40px", opacity:1}, 20);
 });


});

function bodyOut()
{
   document.getElementById('bodyjet').style.display = 'none';
}
