// JavaScript Document
jQuery(document).ready(function(){
	jQuery(".show_drop").each(function () {
        var drop = jQuery('~ ul', this);
        jQuery(this).hover(
            function(){
                drop.show();
            },
            function(){
                var flag = false;
                window.setTimeout(function(){
                    if(!flag) drop.hide();
                }, 100);
                jQuery('~ ul', this).hover(
                    function(){
                        flag = true;
                    },
                    function(){
                        drop.hide();
                    }
                );
            }
        );
    });
});
