$(function(){
	$('.mm').hoverIntent(function(){
		var id = $(this).attr('name');
		var height = $(this).height();
		
		$(this).contents().find('.smi').css('top','-'+(height+11)+'px');
		$(this).contents().find('#arrow'+id).addClass("arrow_hover");
		$(this).contents().find('#mi'+id).addClass('menu-item-hover');
		$('.sm'+id).show();
		
	}, function() {
		var id = $(this).attr('name');
		
		$(this).contents().find('#arrow'+id).removeClass("arrow_hover");
		$(this).contents().find('#mi'+id).removeClass('menu-item-hover');
		$('.sm'+id).hide();
	
	});
	
})

