
window.addEvent('domready', function() {


    /* ability to load pages */
    new pageLoader({
        target: $(document.body).getElement('div#main > div.inner-content'),
        pages: {
            'impressum': 'impressum.html',
            'start':     'start.html',
            '_default':  'start.html'
        },
        eval: true,
        filePath: 'request/',
        observe: true,
        applyClass: true
    });
});


