$(document).ready(function(){
	$('#footer_options').hide();
	$(".anchor").mouseover(function(){
			$('#footer_options').show();
		}).mouseout(function(){
	$('#footer_options').hide();
	});	
});
