// $Id$
(function($) {
// Обработать сноски
$(document).ready(function() {
$("a[href^='#']").each(function(){
if ($(this).attr("href").length > 1){
var name=$(this).attr("href").replace("#","");
var note=$("a[name='"+name+"']").parent();
$(this).attr("title",note.text());
note.css({fontSize:'.75em',color:'#333'});
note.parent().css({borderTop:'1px solid #333',paddingTop:'.25em'});
}
});
});
}(jQuery));
;

