$(document).ready(function() {

    $('.giglink').live("click", function() {

        var id = $(this).prev().val();

        blockElement('#main');

        $.get('gig.php?id=' + id + '&type=1', function(data) {

            var width = $(document).width();
            var elementWidth = 620;
            var elementHeight = 520;

            $.blockUI
                ({
                    message: data,
                    css: { cursor: 'normal', top: '50px', height: elementHeight + 'px', width: elementWidth + 'px', margin: '0 auto', left: width / 2 - (elementWidth / 2) },
                    overlayCSS: { cursor: 'normal' },
                    centerX: true,
                    centerY: true

                });

          unblockElement('#main');

        });

    });
    $('#closeGigPopUp').live("click",function(){
        $(document).unblock();
    });
    
});
