$(document).ready(function(){
	
	$("#map").children(".compass").children("a").hover(function(){
		$('#map').children(".slide_out").show();
		$('#map').children(".compass").hide();
	});
	$("#map").children(".slide_out").hover(function(){
		$('#map').children(".slide_out").show();
	},function(){
		$('#map').children(".compass").show();
		$('#map').children(".slide_out").hide();
	});	
	
	$("#map2").children(".compass").children("a").hover(function(){
		$('#map2').children(".slide_out").show();
		$('#map2').children(".compass").hide();
	});
	$("#map2").children(".slide_out").hover(function(){
		$('#map2').children(".slide_out").show();
	},function(){
		$('#map2').children(".compass").show();
		$('#map2').children(".slide_out").hide();
	});	
	
});
