//GLOBAL INITS
	//these have to be outside of the onready function - i'm not sure why, but it breaks IE to have them inside
		
		
	//window.addEvent('domready', function(){}); //this gives problems with IE crash
	window.onload=function(){
		HomeNav = new navObj(); 
		myLogin = new loginManager();
		
		console.log('global inits');
		HomeNav.nav_ids= new Array('home','contact','about','mm','hire','member','txtor'); //these have to match the IDs in the nav tags
		
		//check if user is logged in
		//if so, this method will display the logged in message
			myLogin.checkLoggedInCookie();
		
		//call the inits routine from the section
		//section name is set as a global var in the inits.js for the given section in: current_secion
		//and the inits routine is named SECTION_inits();
			var section_inits_handler=current_section+"_inits()";
			eval(section_inits_handler);
	}
	
	
