$(function(){

    var options = {
            autoOpen: false,
            width: '50%',
            modal: true
    };

    $("a[id^='showdetail']").each(function(index) {
            var id = $(this).attr('id').replace('showdetail','');
            
            var dlg = $('#detail'+id).dialog(options);

            /*if(dlg.prev().children('#ui-dialog-title-detail'+id).text() == band){
                dlg.dialog("open");
            }*/

            $('#showdetail'+id).click(function() {
                    dlg.dialog("open");
                    return false;
            });
    });

    if(window.location.hash){
        var band = window.location.hash;
        band = band.substring(1);

        $('title').prepend(band+' - ');

        var hashid = $('span.ui-dialog-title:contains("'+band+'")').attr('id').replace('ui-dialog-title-detail','');

        $('#detail'+hashid).dialog('open');
    }
    

});