	window.onload = function(){
		setOnClickHandlers();
		//document.getElementById('section_home').setAttribute('class','activeSection');
	};

/* * * * * * * * * * * * * * * * * *
* Initialization
* * * * * * * * * * * * * * * * * */

	function setOnClickHandlers(){

		/* **** Assign Display/hide toggle to Chamber of Commerce members pages **** */
		for(var i=1; i<14; i++){
			if(document.getElementById('pob' + i) == null) {break;}	//if !members section
			
			assignDisplayFunctions('pob' + i, 'poblink' + i);
		}

		/* **** Section->Content links **** */
				//document.getElementById('section_home').onclick = function(){goToSection('home');};
				//document.getElementById('section_members').onclick = function(){goToSection('members');};
				//document.getElementById('section_about').onclick = function(){goToSection('about');};
				//document.getElementById('section_contactus').onclick = function(){goToSection('contactus');};
	}
