$(function(){
$('#map').prepend('<span id="loader">Loading ...</span>').addClass('script'); $('#map').find('ul').hide();
  var mapUrl=$('#eu').css('background-image').replace(/"/g,"").replace(/url\(|\)$/ig, "");
  var mapImg=new Image();
  $(mapImg).load(function(){$('#loader').fadeOut(); $('#map').find('ul').fadeIn(); $('#eu').find('a').prepend('<span class="map" />');
   for(var i=1;i<30;i++){ $('#eu .map').append('<span class="s'+i+'" />'); }
   if($('#map').hasClass('tooltip')){$('#eu').find('li').each(function(){ var tooltipName=$(this).children('a').text(); var tooltipLeft=$('.tt').outerWidth()/-2; var tooltipTop=$('.tt').outerHeight()/-2; $(this).append('<span class="tt">'+tooltipName+'</span>'); $('.tt').css({'display':'none','margin-left':tooltipLeft,'margin-top':tooltipTop});});$('#eu li').hover(function(){$(this).children(".tt:visible").hide(); $(this).children(".tt").show(); $(this).children("a").removeAttr('title');},function(){$(this).children(".tt").hide();});}
   }).error(function(){$('#loader').text('No map!'); $('#eu span').hide(); $('#map,#eu').css({'height':'auto','left':'0','margin':'0 auto'});
    }).attr('src',mapUrl);
  var loaderPos=$('#loader').outerWidth()/-2; $('#loader').css('margin-left',loaderPos);
  $('#eu').find('ul').click(function(){window.location.href=$(this).children('a').attr('href');});
});
