$(document).ready(function() {
    var offer = /[\\?&]offerId=([^&#]*)/.exec(window.location);

    if (offer != null) {
        if (offer[1] == 10) {
            $('<a id="offerOverlay" href="promos/vod/overlay.html" style="color:inherit;"></a>')
            .fancybox({
                'frameWidth': 860,
                'frameHeight': 1050,
                'overlayShow': true,
                'hideOnContentClick':false,
                'hideCloseButton':true,
                'disableKeypress':true,
                'noResize':true
            })
            .insertAfter($('#fancyBW'));
        } else if (offer[1] == 11) {
            $('<a id="offerOverlay" href="promos/urdu/overlay.html" style="color:inherit;"></a>')
            .fancybox({
                'frameWidth': 860,
                'frameHeight': 1250,
                'overlayShow': true,
                'hideOnContentClick':false,
                'hideCloseButton':true,
                'disableKeypress':true,
                'noResize':true
            })
            .insertAfter($('#fancyBW'));
        } else if (offer[1] == 12) {
            $('<a id="offerOverlay" href="promos/atn/overlay.html" style="color:inherit;"></a>')
            .fancybox({
                'frameWidth': 822,
                'frameHeight': 888,
                'overlayShow': true,
                'hideOnContentClick':false,
                'hideCloseButton':true,
                'disableKeypress':true,
                'noResize':true
            })
            .insertAfter($('#fancyBW'));
        } else if (offer[1] == 13) {
            $('<a id="offerOverlay" href="promos/televisa/overlay.html" style="color:inherit;"></a>')
            .fancybox({
                'frameWidth': 860,
                'frameHeight': 1000,
                'overlayShow': true,
                'hideOnContentClick':false,
                'hideCloseButton':true,
                'disableKeypress':true,
                'noResize':true
            })
            .insertAfter($('#fancyBW'));
        }

        loadPostalPopup = function(){
            $('#offerOverlay').click();
        };
    } else {
        loadPostalPopup = function(){
            $('#postalOverlay').click();
        };
    }
});