/*

Modular website, global event handler to initialize all javascript functions on page load

*/

function init() {
	/* List of all functions to be executed on page load */
	externalLinks();
	/*goforit();*/
}
window.onload = init;