﻿//=============================================================================
// Javascript file for the web site wwww.RichmondLionsClub.org
//
// © Wild Hare Productions 2008-2009. All rights reserved.
//
// Portions of this file are copyright their respective owners.
// Copyright notice for these sections is given as appropriate.
//=============================================================================


//=============================================================================
// Without the appropriate HTML sections this routine generates errors at load
// time. The routine was stripped out to it's own file and can be included as
// required.
//=============================================================================
window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'),  'p.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#528CE0');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#FF0000');
		}
	});

});



