// Replace the path below with the path where your js file is located.
$js_path = "http://www.soojs.com/js/";
function js_include($script){
var script = document.createElement('script');
script.src = $js_path $script;
script.type = 'text/javascript';
var head = document.getElementsByTagName('head').item(0);
head.appendChild (script);
}
//Change the question to your file
js_include("prototype.js");
js_include("scriptaculous.js");