/*********************************************
	windowOnLoad class
	by Adam Barry

	Copyright 2006, adam@barry.dk
**********************************************

Description:
Function that executes multiple scripts during
window load.

Language:
JavaScript

Example:
<script type="text/javascript" src="scripts/windowOnLoad.js"></script>

*/

function loadFunctions () {
	externalLinks();
	dropDownNav();
}


/* Execute the following functions when the page loads */
window.onload = loadFunctions;
