I have a bunch of JavaScript files that I would like to include in the page, but I don\'t want to have to keep writing
What about using a server-side script to generate the script tag lines? Crudely, something like this (PHP) -
$handle = opendir("scripts/"); while (($file = readdir($handle))!== false) { echo ''; } closedir($handle);