$(document).ready(function() {

$('#a-egypte').hover(function() {
$('.hover', '#t-egypte').stop().animate({'opacity': 1}, 700);
$('.hover', '#d-egypte').stop().animate({'opacity': 1}, 700)
},function() {
$('.hover', '#t-egypte').stop().animate({'opacity': 0}, 700);
$('.hover', '#d-egypte').stop().animate({'opacity': 0}, 700)
})
	
$('#a-mid-oost').hover(function() {
$('#t-mid-oost').css('z-index' , 2);
$('.hover', '#t-mid-oost').stop().animate({'opacity': 1}, 700);
$('.hover', '#d-mid-oost').stop().animate({'opacity': 1}, 700);
},function() {
$('.hover', '#t-mid-oost').stop().animate({'opacity': 0}, 700);
$('.hover', '#d-mid-oost').stop().animate({'opacity': 0}, 700);
$('#t-mid-oost').css('z-index' ,0);
})
	
$('#a-azie').hover(function() {
$('.hover', '#t-azie').stop().animate({'opacity': 1}, 700);
$('.hover', '#d-azie').stop().animate({'opacity': 1}, 700)
},function() {
$('.hover', '#t-azie').stop().animate({'opacity': 0}, 700);
$('.hover', '#d-azie').stop().animate({'opacity': 0}, 700)
})

$('#a-mexico').hover(function() {
$('.hover', '#t-mexico').stop().animate({'opacity': 1}, 700);
$('.hover', '#d-mexico').stop().animate({'opacity': 1}, 700)
},function() {
$('.hover', '#t-mexico').stop().animate({'opacity': 0}, 700);
$('.hover', '#d-mexico').stop().animate({'opacity': 0}, 700)
})

$('#a-europa').hover(function() {
$('.hover', '#t-europa').stop().animate({'opacity': 1}, 700);
$('.hover', '#d-europa').stop().animate({'opacity': 1}, 700)
},function() {
$('.hover', '#t-europa').stop().animate({'opacity': 0}, 700);
$('.hover', '#d-europa').stop().animate({'opacity': 0}, 700)
})
});
