$(document).ready(function () {
	
	$(".location").hover(
	
		function () {
			  $('#location').toggle();
		}, 
		
		function () {
			  $('#location').toggle();
		}
		
	);
		
	$(".adventure").hover(
	
		function () {
			  $('#adventure').toggle();
		}, 
		
		function () {
			  $('#adventure').toggle();
		}
		
	);
	
});

