/**
 * @todo add author and information
 */
$(function() {
    var wochentag = new Date().getDay() - 1;

    // wochentags-index nach Zählung von Montag an anpassen
    if (-1 == wochentag) {
        wochentag = 6;
    }
    
    // es kann manchmal 2 tabellen mit den Öffnungszeiten auf der Seite geben,
    // deshalb iterieren wir über alle gefundenen Tabellen
    $('.ozeitenTop table').each(function(){
        // fetch an aray with the rows of the current table & set
        // the row of the current day-of-the-week to the "highlighted" class
        $($(this).find('tr')[wochentag]).addClass('aktuellerWochentag').removeClass('0');
    });
});
