﻿window.addEvent('domready', function() {		//create our Accordion instance	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {		opacity: false,		onActive: function(toggler, element){			toggler.setStyle('background', 'url(../images/home/announcement_middle_open.png)'); /*if you comment out this line the accordion will work in IE*/			/*toggler.setStyles({'background-image':' url(../images/home/announcement_middle_open.png)','color':'#999933'});*/		},		onBackground: function(toggler, element){			toggler.setStyle('background-image', 'url(../images/home/announcement_middle_closed.png)'); /*if you comment out this line the accordion will work in IE*/			/*toggler.setStyles({'background-image':'url(../images/home/announcement_middle_closed.png)','color':'#999933'});*/		}	});});/*// original demo codewindow.addEvent('domready', function() {		//create our Accordion instance	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {		opacity: false,		onActive: function(toggler, element){			toggler.setStyle('color', '#41464D');		},		onBackground: function(toggler, element){			toggler.setStyle('color', '#528CE0');		}	});});*/