/**
 * @author michael
 */
$(document).ready(function() {
    $('#addChildLink').click(function() {
        $('#children_container').append($('#addChildTemplate').html());
    });

    // Hübsche Tabellen
    $('tr').each(function(i, item) {
        if ( i % 2 == 0 ) $(item).addClass('row2');
    });

    $('table').each(function(i, item) {
        $(item).attr('cellspacing', '0');
    });

    $('#admin_accordion').accordion({
        autoheight: false,
        header: 'a.tab'
    });
});

