function menu_onmouseover(items){
	
	$(items).each(function(i){
			/*var $w=$(this).width() - 6;
									
			$(this).find("ul").each(function(){
											if($w > 120)
										   		$(this).css({"width": $w});
										   	});*/
			
			
			$(this).find('ul').find('li:last').find('a').addClass("sub_last");
			
			//check if contains a sub menu
			if($(this).find('ul').children().length > 0)
			
				$(this).hover( function() {
				
				var $h=0;
				$(this).find("ul").find("li").each(function(){
					$h=$h+$(this).height() +1;
				});
					
				$(this).find('ul').stop(true, false).animate({"height" :$h}, 900);
				$(this).find("ul").css({"border-width" : 1});
									
				}, function() {
					
					$(this).find("ul").stop(true, false).animate({"height" : 0}, 400, function(){$(this).css({"border-width" : 0}); });//.css({"width" : 0});
					//$(this).find("ul").css({"border-width" : 0});
					});
			   });
						
}