﻿jQuery.noConflict();
jQuery(document).ready(function() {
    window.setTimeout(function() {
        jQuery(".menuitem li").hover(function() {
            jQuery(this).find('ul:first').show(400);
        }, function() {
            jQuery(this).find('ul:first').hide(100);
        });
    }, 200);
});
