﻿$(document).ready(function () {
    initFancyBoxes();
});

function initFancyBoxes() {
    $("a.fancylink").fancybox({
        'transitionIn': 'none',
        'transitionOut': 'none',
        'scrolling': 'no',
        'overlayColor': '#FFF',
        'padding': 0,
        'titleShow': false
    });
    $("a.fancyimg").fancybox({
        'transitionIn': 'none',
        'transitionOut': 'none',
        'scrolling': 'no',
        'overlayColor': '#FFF',
        'padding': 50,
        'hideOnContentClick': true,
        'showCloseButton': true,
        'speedOut': 0,
        'speedIn': 0,
        'titleShow': false
    });

    $("a.paypal_icon").fancybox({
        'width': '75%',
        'height': '75%',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });


}
