path = new Array();
path.push('lib/scripts/prototype/tabslide.js');
path.push('lib/scripts/prototype/prototype.js');
path.push('lib/scripts/prototype/effects.js');
path.push('lib/scripts/prototype/animator.js');
path.push('lib/scripts/prototype/teaser_gallery.js');
path.push('lib/scripts/prototype/slidebox.js');
path.push('lib/scripts/prototype/datepicker.js');
if(lang == 'de'){
	path.push('lib/scripts/prototype/lightwindow_de.js');
}else{
	path.push('lib/scripts/prototype/lightwindow_en.js');
}


loadScrips(path);

function loadScrips (path)
{
        for(i=0;i<path.length;i++)
        {
                document.write('<script type="text/javascript" src="' + path[i] + '"></script>');
        }
}
 
