$(function(){
	$('.nav-2-content a').each(function(i){
		$(this).hover(
				function() {
					$('#door-'+(i+1)).show();
				},
				function() {
					$('#door-'+(i+1)).hide();
				}
		);
	});

	$('#doors-buttons a').each(function(i){
		$(this).hover(
				function() {
					$('#door-'+(i+1)).show();
				},
				function() {
					$('#door-'+(i+1)).hide();
				}
		);
	});



});