
$(document).ready(function(){
	
	$("#mm_ul > li").mouseover(function(event){
		$(this).addClass("more");
	});
	
	$("#mm_ul > li").mouseout(function(event){
		$(this).removeClass("more");
	});

});
