function include(filename)
{
  var head = document.getElementsByTagName('head')[0];
  
  script = document.createElement('script');
  script.src = filename;
  script.type = 'text/javascript';
  
  head.appendChild(script);
}
/**
 * We use the jquery javascript library for DOM manipulation and
 * some javascript tricks.  We serve the script from Google because it's
 * faster than most ISPs.  Get more information and documentation
 * at http://jquery.com
 */
//include('http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js');
/**
 * Used for the scroll pane
 */
//include('jScrollPane.js');
/*Modx libraries*/
/*include('assets/templates/modxhost/drop_down_menu.js');
include('manager/media/script/mootools/mootools.js');*/
//Add more js libraries here
//include('');
/*include('jquery.em.js');
include('jquery.mousewheel.js');

jQuery(document).ready(function($){
 // This initialises the scrollpane.
 $("#contentPane").jScrollPane({showArrows:true});
 return false;
});*/

