﻿$(document).ready(function () {
    $(".multipleLanguages").click(function () {
        $(".languageSelector:visible").fadeOut("fast");
        //$(this).next(".languageSelector").stop(true, true).animate({ opacity: "show" }, "slow");
        $(this).next(".languageSelector").stop(true, true).fadeIn("slow");
    }, function () {
        $(this).next(".languageSelector").animate({ opacity: "hide" }, "fast");
    });
    $(".popupClose").click(function () {
        $(".languageSelector:visible").fadeOut("fast");
    });
});
