$(document).ready( function() 
		{	
			$('#fbLikeBox').mouseleave(function(){
				$(this).animate({
					marginRight: "0px"
				}, 400);
			});
    
	    	$('#showwidget').mouseenter(function(){
				$('#fbLikeBox').animate({
					marginRight: "302px"
				}, 400);
			});

	    	$('.regulamintext').jScrollPane({horizontalGutter: 50});	
  	
});


