
var guide = {
	makeAccordions: function(){
		$$('dl.pjct_index').each(function(el){
			new Accordion(
				el.getElements('dt.pjct_index_title'), 
				el.getElements('dd.pjct_index_description'),
				{
					opacity: false,
					onActive: function(toggler, element){
						toggler.setStyle('color', '#f10');
						document.getElementById('image_'+toggler.getProperty('id')).style.display = '';
					},
					onBackground: function(toggler, element){
						toggler.setStyle('color', '#fff');
						document.getElementById('image_'+toggler.getProperty('id')).style.display = 'none';
					}
				}
			);
		});
	},

	
	init: function(){
		this.makeAccordions();
	}
};

window.onDomReady(guide.init.bind(guide));



