/**
 * @author Dave
 */
$(document).ready(function(){
   
    $my.ticketsDialog = $("#ticketsDialog");
    $my.attendanceDialog = $("#attendanceDialog");
    $my.talkDialog = $("#talkDialog");
    $my.allTabs = $("#tabs");
    
    $("#tab1").attr("href", "#tab-all");
    $("#tab2").attr("href", "#tab-add");

    $(".band").click(attachBandClick);

    $my.ticketsDialog.dialog({
        autoOpen: false,
        modal: true,
        resizable: false
    });
    
    $my.attendanceDialog.dialog({
        autoOpen: false,
        modal: true,
        resizable: false,
        width: 350
    });
    
    $my.talkDialog.dialog({
        autoOpen: false,
        modal: true,
        resizable: false,
        width: 550,
        minHeight: 400
    });
            
    $my.allTabs.show().tabs();

    $my.allTabs.bind('tabsselect', function(event, ui) {
        if (ui.panel.id == 'tab-add') {
            event.preventDefault();
            location.href = 'add.html';
        } else if (ui.panel.id == 'tab-all') {
            event.preventDefault();
            location.href = 'guide.html';
        }
    });
    displayAds();
				
});

