$(function()
{
	$('#facebook-like-main').css('right', '-193px').hoverIntent({
		sensitivity: 3, interval: 50,
		over:
		function(){
		  $(this).animate({ right: 0 }, 500);
        },
		timeout: 10,
		out:
		function(){
		  $(this).animate({ right: -193 }, 500);
		}
	});
});
