jQuery(window).load(function(){

  $('#europe_cs_map').hover(function() {
    $('#europe_cs').stop(true, true).fadeIn('slow');
  }, function() {
    $('.europe').stop(true, true).fadeOut('slow');
  });

/*
	jQuery("#europe_cs_map").mouseover(function(e){
      $('.europe').not('#europe_cs').fadeOut('slow');
      $('#europe_cs').fadeIn('slow');
	});

	jQuery("#europe_cs_map").mouseout(function(e){
			$('#europe_cs').stop(true,true).fadeOut('slow');
	});
*/

  $('#europe_de_map').hover(function() {
    $('#europe_de').stop(true, true).fadeIn('slow');
  }, function() {
    $('.europe').stop(true, true).fadeOut('slow');
  });
/*
	jQuery("#europe_de_map").mouseover(function(e){
      $('.europe').not('#europe_de').fadeOut('slow');
      $('#europe_de').fadeIn('slow');
	});

	jQuery("#europe_de_map").mouseout(function(e){
			$('#europe_de').stop(true,true).fadeOut('slow');
	});
*/

  $('#europe_at_map').hover(function() {
    $('#europe_at').stop(true, true).fadeIn('slow');
  }, function() {
    $('.europe').stop(true, true).fadeOut('slow');
  });
/*
	jQuery("#europe_at_map").mouseover(function(e){
      $('.europe').not('#europe_at').fadeOut('slow');
			$('#europe_at').fadeIn('slow');
	});

	jQuery("#europe_at_map").mouseout(function(e){
			$('#europe_at').stop(true,true).fadeOut('slow');
	});
*/
});
