
window.onload = function() { 
   var myEffects   = new Accordion('h3.toggler', 'div.accordion-list', {});
}

window.addEvent('domready', function() {
									 
	var footerish = $$('div.footerelement');
	
	footerish.each(function(element){
		new Fx.Style(element, "opacity", {duration: 10}).start(0.2);
		
		element.addEvent('mouseenter', function(){
			new Fx.Style(element, "opacity", {duration: 500}).start(1.2);
		});
		
		element.addEvent('mouseleave', function() {
			new Fx.Style(element, "opacity", {duration: 500}).start(0.2);
		});
	});
	
	var list = $$('div.accordion-list ul li');
	
    list.each(function(element){
        var effect = new Fx.Styles(element, {wait: false, duration: 300});
     
        

    });
});


