 jQuery(document).ready(function() {
            jQuery(".dropdown img.flag").addClass("flagvisibility");

            jQuery(".dropdown dt").click(function() { //When trigger is clicked...

            //Following events are applied to the subnav itself (moving subnav up and down)
            jQuery(".dropdown dd ul").fadeIn(1000); //Drop down the subnav on click

            jQuery(".dropdown dd").hover(function() {
            }, function(){
              jQuery(".dropdown dd ul").fadeOut(1000); //When the mouse hovers out of the subnav, move it back up
            });

            });

             jQuery(".dropdown dd ul li a").click(function() {
                var text = jQuery(this).html();
                jQuery(".dropdown dt a span").html(text);
                jQuery(".dropdown dd ul").hide();
                jQuery("#result").html("Selected value is: " + getSelectedValue("sample"));
            });

            jQuery(document).bind('click', function(e) {
              var jQueryclicked = jQuery(e.target);
              if (! jQueryclicked.parents().hasClass("dropdown"))
                jQuery(".dropdown dd ul").fadeOut(1000);
            });

        });

