function accordion1(){ var accordion = new Accordion('h3.atStart', 'div.atStart', { opacity: true, fixedHeight:180, event: 'mouseenter', onActive: function(toggler, element){ toggler.setStyle('background', 'url("/images/bg_top_salagiochi_on.gif") no-repeat'); toggler.setStyle('color', '#00b8e6'); }, onBackground: function(toggler, element){ toggler.setStyle('background', 'url("/images/bg_bottom_salagiochi_off.gif") no-repeat'); toggler.setStyle('color', '#00b8e6'); } }, $('accordion')); } function accordion2(){ var accordion2 = new Accordion('h3.atStart2', 'div.atStart2', { opacity: true, fixedHeight:180, event: 'mouseenter', onActive: function(toggler, element){ toggler.setStyle('background', 'url("/images/bg_top_salagiochi_on.gif") no-repeat'); toggler.setStyle('color', '#00b8e6'); }, onBackground: function(toggler, element){ toggler.setStyle('background', 'url("/images/bg_bottom_salagiochi_off.gif") no-repeat'); toggler.setStyle('color', '#00b8e6'); } }, $('accordion')); } function accordion3(){ var accordion3 = new Accordion('h3.atStart3', 'div.atStart3', { opacity: true, fixedHeight:180, event: 'mouseenter', onActive: function(toggler, element){ toggler.setStyle('background', 'url("/images/bg_top_salagiochi_on.gif") no-repeat'); toggler.setStyle('color', '#00b8e6'); }, onBackground: function(toggler, element){ toggler.setStyle('background', 'url("/images/bg_bottom_salagiochi_off.gif") no-repeat'); toggler.setStyle('color', '#00b8e6'); } }, $('accordion')); } window.addEvent ('domready', function(){setTimeout(accordion1, 100);}); window.addEvent ('domready', function(){setTimeout(accordion2, 100);}); window.addEvent ('domready', function(){setTimeout(accordion3, 100);});