$j = jQuery.noConflict();

$j(function() {
    if($j.fancybox) {
        $j('.cms_popup').each(function() {
            $j(this).fancybox({
                'onStart' : function() {
                    $j('embed, object, select').css('visibility', 'hidden');
                },
                'href' : '/scripts/popup.php?page=' + $j(this).attr('page'),
                'centreOnScroll' : true,
                'titleShow' : false,
                'onClosed' : function() {
                    $j('embed, object, select').css('visibility', 'visible');
                }
            });
        });

        $j('.preorder-popup').fancybox({
            'type' : 'iframe',
            'centerOnScroll' : false,
            'titleShow' : false,
            'autoDimensions' : false,
            'width' : 675,
            'height' : 525
        });
    }

    $j('.wufoo-popup').click(function() {
        window.open($j(this).attr('href'), null, 'height=838,width:680,toolbar=0,location=0,status=0,scrollbars=1,resizable=1');
        return false;
    });
});

