';
}
}
$('#listAlbum').html(res);
$('#listAlbum').css('padding-top','15px');
});
$('#az_sort_album').on('click',function(event){
var sortprop='data-az-album-sort';
var el = event.currentTarget;
var el_glyph = $(el).children('span.glyphicon');
var res='';
if(el.getAttribute(sortprop)){
el.setAttribute(sortprop,'');
el_glyph.removeClass('glyphicon-sort-by-order');
el_glyph.addClass('glyphicon-sort-by-order-alt');
for (var i=(albumlist.length-1); i>=0; i--) {
res += albumlist[i];
}
}else{
el.setAttribute(sortprop,'1');
el_glyph.removeClass('glyphicon-sort-by-order-alt');
el_glyph.addClass('glyphicon-sort-by-order');
for (var i=0; i