You have a few options...
You can either call the other .js file automatically, or call it only if needed:
javascript Code:
/* call the other .js automatically */
document.write('<script type="text/javascript" src="secondScript.js"><\/script>')
/* place logic behind it and call only if needed */
/*load method:
newScript("secondScript.js"); */
function newScript(js_src) {
var js = document.createElement('script');
js.type = 'text/javascript';
js.src = js_src;
document.getElementsByTagName('head')[0].appendChild(js)
}
However, if you are always going to be calling the same ones, I would suggest putting them all in one .js file. This will help speed as the client will only make one HTTP request for the scripts, rather than 6 separate ones.