﻿(function ($) {
    $(document).ready(function () {
        $(".flagselectionbox").hover(function () {
            $(".countryflags").show();
        },
        function () {
            $(".countryflags").hide();
        });
        var fClass = $('#currentflag').attr('class');
        if (fClass != undefined) {
            $('#' + fClass).hide();
        };
    });
})(jQuery);
