$(function(){
	$('#footer-menu').bind('inview', function(event, visible){
		if(visible){
			$('#floating-footer').removeClass('locked');
			$('#floating-footer-ghost').css('display','none');
		}
		else{
			$('#floating-footer').addClass('locked');
			$('#floating-footer-ghost').css('display','block');
		}
	});
});
