﻿$(document).ready(function () {
    var pageName = window.location.pathname.toLowerCase().replace("/", "").replace(".aspx", "");
    if (pageName == "product") {
        $(".product-images").fancybox({
            'width': '80%',
            'height': '100%',
            'autoScale': true,
            'transitionIn': 'elastic',
            'transitionOut': 'elastic',
            'overlayShow': 'true',
            'overlayColor': '#666',
            'overlayOpacity': '0.4',
            'type': 'iframe'
        });
    };
});
