jQuery(function($){
	
	$('ul.menu-column').hover(
	
	function(){
		$(this).animate({ opacity: 0.8,
 height: '105px'},200);
	},
	function(){$(this).animate({ opacity: 1,height: '95px'},200);}
	);
	//alert('funz-menu');
});