// JavaScript Document
// General Application Startup

//this file is to contain all general procedures + variables required by the web application

var ShowNav = true;
var ShowLogos = true;


function App_onload(){

//call all functions required by the application once the page has loaded

	// update the nav list with the links
	if(ShowNav==true){
		UpdateNav();
	}
	// update logos
	if(ShowLogos==true){
		UpdateLogos();
	}
	//hide the loading div
//	HideLoading();
	
	//display the page
	ShowPageCont();
	
	//display the page content
	
}
function App_preload(){

	//call all functions required by the application while the page is still loading
	//UpdateLoading();

}
