;(function($) {
   $(document).ready(function() {
   
   /*
    
    Internet Explorer mag keine "Hover" Funktion -..-
    
    
    $('.areaKey').hover(function(){
        alert($(this).attr('id'));
       $('#overlay').attr('src', "/themes/kinderland-hamburg/images/Startseite/"+$(this).attr('id')+".jpg");
    
   },function(){
        $('#overlay').attr('src', "/themes/kinderland-hamburg/images/Startseite/karte_normal.jpg");
   });
   */
   
   $('.areaKey').mouseover(function(e){
        //alert($(this).attr('id'));
        if($(this).attr('id')){
            $('#overlay').attr('src', "/themes/kinderland-hamburg/images/Startseite/"+$(this).attr('id')+".jpg");
        }
   });
   
   $('.areaKey').mouseout(function(){
        $('#overlay').attr('src', "/themes/kinderland-hamburg/images/Startseite/karte_normal.jpg");
   });
    
    
    }) // end of Document ready
})(jQuery);


