

function include_dom() {
 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', 'litebox/prototype.lite.js');
 html_doc.appendChild(js);
var js2 = document.createElement('script'); 
js2.setAttribute('language', 'javascript'); 
js2.setAttribute('type', 'text/javascript'); 
js2.setAttribute('src', 'litebox/moo.fx.js'); 
html_doc.appendChild(js2);
var js3 = document.createElement('script');
js3.setAttribute('language', 'javascript'); js3.setAttribute('type', 'text/javascript'); 
js3.setAttribute('src', 'litebox-1.0.js'); 
html_doc.appendChild(js3);

var js4 = document.createElement('link');
js4.setAttribute('rel', 'stylesheet'); 
js4.setAttribute('type', 'text/css'); 
js4.setAttribute('href', 'litebox/css/lightbox.css'); 
html_doc.appendChild(js4);

var body_doc = document.getElementsByTagName('body').item(0);
body_doc.addEventListener("onload", initLightbox(), false);

 return false;
}