
$(document).ready(function(){
	$('.menu_m ul li').hover(function(){
		var li_width = $(this).width();
		$(this).find('ul').css({width: li_width});
		$(this).find('ul').css({display: 'block'});
		$(this).addClass('hover');
	}, function(){
		$(this).find('ul').css({display: 'none'});
		$(this).removeClass('hover');
	})
})