// Accordian effect
window.addEvent('domready', function() {
	var myAcc = new Accordion($$('h3.toggler'), $$('div.function'), {show: 0, opacity: false});
});

/* Turns the header arrow downward when a section is opened in the widget */
function turnArrow (what) {
	$$('div#widget h3 span').removeClass('selected');
	what.firstChild.className = 'selected';
}