$(document).ready(function() {
$('.headerlink').each(function( index ) {
var type = $(this).parent().get(0).nodeName
if (type == 'H1') {
var name = $(this).parent().get(0).childNodes[0].data;
var ln = $(this).attr('href');
$('div.apitoc').append(''+name+'');
} else if (type == 'H2') {
var name = $(this).parent().get(0).childNodes[0].data;
var ln = $(this).attr('href');
$('div.apitoc').append(''+name+'');
} else if (type == 'DT') {
//var name = $(this).parent().text().replace('ΒΆ', '');
var name = $(this).parent().html().replace(//g, '')
.replace(//g, '');
var ln = $(this).attr('href');
var p = $(this).parent().parent();
if ( p.hasClass('method') || p.hasClass('attribute') ) {
$('div.apitoc').append(''+name+'');
} else {
$('div.apitoc').append(''+name+'');
}
} else {
alert( type );
}
});
});