$(document).ready(function(){ 


$('#regionen li:nth-child(1) a').tooltip({     
delay: 0,     
showURL: false,
bodyHandler: function() { 
        return $("<img/>").attr("src", "images/r-v.gif"); 
    } 
});


$('#regionen li:nth-child(2) a').tooltip({     
delay: 0,     
showURL: false,
bodyHandler: function() { 
        return $("<img/>").attr("src", "images/r-m.gif"); 
    } 
});


$('#regionen li:nth-child(3) a').tooltip({     
delay: 0,     
showURL: false,
bodyHandler: function() { 
        return $("<img/>").attr("src", "images/r-s.gif"); 
    } 
});


$('#regionen li:nth-child(4) a').tooltip({     
delay: 0,     
showURL: false,
bodyHandler: function() { 
        return $("<img/>").attr("src", "images/r-e.gif"); 
    } 
});



$('#regionen li:nth-child(5) a').tooltip({     
delay: 0,     
showURL: false,
bodyHandler: function() { 
        return $("<img/>").attr("src", "images/r-d.gif"); 
    } 
});

$('#regionen li:nth-child(6) a').tooltip({     
delay: 0,     
showURL: false,
bodyHandler: function() { 
        return $("<img/>").attr("src", "images/r-t.gif"); 
    } 
});

$('.mitwand').tooltip({
    showURL: false 
});






});

