jQuery.noConflict();
jQuery(document).ready(function(){

    // Hide Details:
    jQuery('.gigpress-info').hide();

    // Schedule Expander:
    jQuery('td.gigpress-venue').append('<a class="expander">+</a>');

    jQuery('a.expander').bind('click', function() {
        switch(jQuery(this).text()) {
            case '+' : // expand:
                jQuery(this).parent().parent().next().show();
                jQuery(this).text('-');
                break;
            case '-' : // expand:
                jQuery(this).parent().parent().next().hide();
                jQuery(this).text('+');
                break;
        }

    });

});
