﻿/// <reference path="../../Libs/Plugins/jQuery/jquery.js" />

/// <summary>
/// © XTRA | Estetica e tecnologia
/// Email: info@xtra.it
/// </summary>

// Page: Ready
$(document).ready(function() {


});

// Ajax: UpdatePanel Ready
function pageLoad() {

    $(function() {

        // initialize scrollable
        $(".scrollable").scrollable();

    });

    // Imposta: Zoom immagine
    $(".ImageGallery_Link").fancybox({
        'titleShow': false,
        'type': 'image',
        'cyclic': true,
        'centerOnScroll': true,
        'overlayOpacity': 0.6,
        'overlayColor': '#000'
    });

    // Imposta: Espansione categorie documenti residenza
    $(function ()
    {
        // Recupera: Elementi dalla pagina

        var $CategoryLink = $("#DivResidenceDocuments_List .CategoryLink");

        $CategoryLink.click(function (e)
        {
            var $CategoryName = $(".CategoryName", this);
            var $CategoryViewMode = $(".CategoryViewMode", this);
            var $CategoryContent = $(".CategoryContent:has(.CategoryName[value=" + $CategoryName.val() + "])", this.parent);

            if ($CategoryViewMode.val() == "Hide")
            {
                $CategoryViewMode.val("Show");

                //: Attiva dettagli
                $CategoryContent.show();
            }
            else
            {
                $CategoryViewMode.val("Hide");

                //: Nasconde dettagli
                $CategoryContent.hide();
            }
        });
    });
    
};
