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
You can't do that in JavaScript, since JS is executed in the browser, not in the server, so it didn't know anything about directories or other server resources.
The best option is using a server side script like the one posted by jellyfishtree.