Shadowbox.loadSkin('classic', 'includes/src/skin'); 
Shadowbox.loadLanguage('de-DE', 'includes/src/lang'); 
Shadowbox.loadPlayer(['flv'], 'includes/src/player'); 

function shadowboxvideo(dateipfad,name){
	Shadowbox.open({
        player:     'flv',
        title:      name,
        content:    dateipfad,
        autoplayMovies:     true,
        height:     300,
        width:      450
    });
}

document.observe('dom:loaded', function(){

    Shadowbox.init({
        skipSetup: true // skip the automatic setup
    });
});
