$(document).ready(function() {
    
    // Verhindert gepunktete Umrandung
    a_tags = document.getElementsByTagName("A");
    for(i=0; i<a_tags.length; i++ ){
        a_tags[i].onfocus = function(){
            this.blur();
        }
    }
    
    // Erzwingt feste Breite für STAND
    $('.standnummer').wrapInner('<span></span>');
    
    // :hover für aktives Element verhindern
    $('.makeview').toggle(function() {
        $(this).closest('tr').css('background', 'white');
    }, function() {
        $(this).closest('tr').removeAttr('style');
    });
    
    // :hover Tabellen-Kopf
    $('.firmenfeld').parent().css('background', 'white');
});
 
