window.addEvent('domready', function(){
	var solutionfinder = new Accordion('h4.solutionfinder', 'div.solutionfinder', {
		opacity: false,
		fixedHeight: 145,
		onActive: function(toggler, element){
			toggler.className='over';
			toggler.selected=true;
		},
		onBackground: function(toggler, element){
			toggler.className='';
			toggler.selected=false;
		}
	}, $('solutionfinder'));
	
	var kwicks = $ES('h4', 'solutionfinder');
	kwicks.each(function(item){
		item.addEvent('mouseenter', function(){
			this.className='over';
			this.style.cursor='pointer';
		});
		item.addEvent('mouseleave', function(){
			if(this.selected!=true) {								 
				this.className='';
			}
			this.style.cursor='default';
		});
			
	});
});
		

		/*$('kwick').addEvent('mouseleave', function(e){
			var obj = {};
			kwicks.each(function(other, j){
				obj[j] = {'width': [other.getStyle('width').toInt(), 125]};
			});
			fx.start(obj);
		});*/