var include_scripts = new Array('jquery-1.3.js', 'jquery.pngFix.js', 'transparency.js', 'left_menu_fix.js','swfobject.js');

for(var key in include_scripts){
	html_doc = document.getElementsByTagName('head').item(0);
    js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', "javascript/" + include_scripts[key]);
    html_doc.appendChild(js);
}