window.addEvent('domready', function() {
	$$('a').each(function(el){
		el.addEvent('click',function(e){
			this.blur();
		});
	});
	$$('#left_col .panel_slide').each(function(el){
		if(el.getElement('ul')){
	el.addEvents({
		'mouseenter': function(){
			height = el.getElement('ul').getStyle('height').toInt() + 40;
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', height);
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '32px');
		}
	});
		}

	});
});