var jq =  jQuery.noConflict();
var inProcess = false;

jq(document).ready(function()
{
    jq(".Cat ul").css("display", "none");
    
    if (jq(".Cat:first").find('li').length == 1)
        jq(".Cat:first").children("ul").css("width", "184px");
    
    jq(".Cat:first").bind("mouseenter", function()
    {
        if(!inProcess)
        {
            inProcess = true;
            jq(this).children('ul').fadeIn(function()
            {
                inProcess = false;
            });
        }
    });
    
    jq(".Cat:first").bind( "mouseleave", function()
    {
        jq(this).children('ul').fadeOut("fast");
    });
});
