function include_dom(script_filename) {
    var html_doc = document.getElementsByTagName('head').item(0);
    var js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', script_filename);
    html_doc.appendChild(js);
    return false;
}

include_dom('js/niftyCube.js');
include_dom('js/xinit.js');
include_dom('js/rd.js');

include_dom('js/globals.js');
include_dom('js/detect.js');


window.onload=function(){
Nifty("div#topNavigace","small");
Nifty("div#usermenu","normal");
resizeSh("ie_sh_l");
resizeSh("ie_sh_r");
}

