$(document).ready(function(){

	$('.inloggen').click(function() {
		$('#login_form').toggle();
	});

  $('.entree_image,.lobby_image,.kantoor_image,.trap_image,.magazijn_image,.kamer_image').hide();

	$('#kilimanjaro > div').mouseover(function() {
		$('.'+ this.className +'_image').show();
		$('.'+ this.className + ' ~ div').hide();
	})
  $('#kilimanjaro > div').mouseout(function() {
  	$('.'+ this.className +'_image').hide();
  	$('#kilimanjaro > div').show();
  })

	$('area').mouseover(function(){	    
	  $('.' + $(this).attr("alt") + '_img').show();
	});

	$('area').mouseout(function(){	    
	  $('.' + $(this).attr("alt") + '_img').hide();
	});
	
	$('area').click(function(){	
		$('#info').hide();
		$('#boekhandels > ul').hide();    
	  $('#' + $(this).attr("alt")).show();
	});

});