$(".r_snapshot").live({
mouseenter:
function(){
$(this).append($("").html('
'));
},
mouseleave:
function(){
$(this).find("span:last").remove();
}
}
);
$('input.multi_files').live("change", function(){
$(this).prev("ul").append(""+$(this).val()+"");
new_node =$(this).clone();
$(this).css("display","none");
new_node.val("");
$(this).before(new_node)
});
$('a.remove_mark').live("click",function(){
$(this).prev("input").val("true");
$(this).parent().css("text-decoration","line-through")
$(this).parent("li").removeClass("r_snapshot");
$(this).next("span").remove();
$(this).remove();
return false;
});