$(function(){   
	$("#message_list ul")
	 .live("mouseover", function() {
		 $(this).addClass("glaybg");
		 $(this).children("li").children("div.under_info").children("span.reply").show(); 
		 $(this).children("li").children("span.message_del").show();
		 
	 }) 
	 .live("mouseout",function() {
		 $(this).removeClass("glaybg");
		 $(this).children("li").children("div.under_info").children("span.reply").hide();
		 $(this).children("li").children("span.message_del").hide();
		 
	 })
});  
