;
/*** catalog tree menu ***/

$(document).ready(function(){
    $('.catalog_tree li a').click(function() {
        var next = $(this).next();
        $(this).children()
        if (next.is('ul')) {
            next.toggle();
            }
        if ($(this).attr('href') == '#')
            return false;
    })
});

