﻿/// <reference path="../../Libs/Plugins/jQuery/jquery.js" />

/// <summary>
/// © XTRA | Estetica e tecnologia
/// Email: info@xtra.it
/// </summary>

// Page: Ready
$(document).ready(function() {

    // Recupera: Elementi TopMenu dalla pagina
    var $TopMenu_Button = $(".TopMenu_Button");

    $TopMenu_Button.hover(function() {

        var $TopMenu_Button_Left = $("a", this);
        var $TopMenu_Button_Right = $("span", this);

        // Imposta: Immagine MouseOver
        $TopMenu_Button_Left.removeClass();
        $TopMenu_Button_Left.addClass("TopMenu_Button_Left_Over");

        $TopMenu_Button_Right.removeClass();
        $TopMenu_Button_Right.addClass("TopMenu_Button_Right_Over");

    }, function() {

        var $TopMenu_Button_Left = $("a", this);
        var $TopMenu_Button_Right = $("span", this);

        // Imposta: Immagine MouseOut
        $TopMenu_Button_Left.removeClass();
        $TopMenu_Button_Left.addClass("TopMenu_Button_Left_Out");

        $TopMenu_Button_Right.removeClass();
        $TopMenu_Button_Right.addClass("TopMenu_Button_Right_Out");
    });

    // Imposta: Popup modale selezione nazione
    $(function() {

    $("a.Country_Link").fancybox({
            'hideOnContentClick': true,
            'overlayOpacity': 0.6,
            'overlayColor': '#000'
        });
    });
});
