

	// on dom ready
	window.addEvent('domready', function(){

		// creating the logo tween effects
		createLogoFx();

		var accordion = new Accordion('div.title', 'div.body',
		{
			alwaysHide: true,
			display: false,
			onActive: function(toggler, element)
			{
				// set title color
				toggler.setStyle('color', '#D2222A');

				// fading the linked logo's in, ther others out; after a small delay to be sure to have this run after onBackground
				setTimeout(function(){
					fadeLogos(toggler, true);
				}, 1);
			},
			onBackground: function(toggler, element)
			{
				// set title color
				toggler.setStyle('color', '#333333');
				// fading the linked logo's in
				fadeLogos(toggler);
			}
		});

	});


