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