jQuery(document).ready(function() {
    jQuery('#catSelector').css('cursor', 'pointer');

    jQuery('#catLink').click(function(){
        jQuery('#catSelector').click();
        return false;
    });

    jQuery('#catSelector').click(function(){
        var currentCssV = jQuery('#catList').css('overflow');

        if (currentCssV == 'hidden') {
            jQuery('#catList').css('height', '100%');
            jQuery('#catList').css('overflow', 'visible');
            jQuery('#catList li').css('background', '#EFF5F9');

            jQuery('#catSelector').html('&and;');
        } else {
            jQuery('#catList').css('height', '25px');
            jQuery('#catList').css('overflow', 'hidden');
            jQuery('#catList li').css('background', 'transparent');
            jQuery('#catSelector').html('&or;');

        }
    });

    jQuery('#catList').mouseout(function(){
        if (tg) {
                clearTimeout(tg);
            }
        setTimeout((function(){
            jQuery('#catSelector').click();
        }), 1000);
        
        return false;
    });


});
