	//
	//	Set up all accordions
	//
	function loadAccordions() {

		//return if there is no accordion box on the page
		if(!$('vertical_container')) {
			return;
		}

		var Accordion = new accordion('vertical_container');

	}


	//
	//	Set up the Logo Box
	//
	function loadLogoBox() {

		$$('.logoBox').each(function(logobox) {

			logobox.childElements().each(function(logo) {

				logo.onmouseover = function(){

										this.getElementsByClassName('logoBox-inactive')[0].hide();
										this.getElementsByClassName('logoBox-active')[0].show();

				};

				logo.onmouseout = function(){

										this.getElementsByClassName('logoBox-inactive')[0].show();
										this.getElementsByClassName('logoBox-active')[0].hide();

				};

			});

		});

	}

	Event.observe(window, 'load', loadAccordions, false);
	Event.observe(window, 'load', loadLogoBox, false);