$(document).ready(function() {
    $('#cat-dropdown li[data-action]').mouseenter(function(){
        var div = $(this).find('.cat-dropdown-full');
        if ($(this).attr('data-action')) {
            $.ajax({
                url : $(this).attr('data-action')
                ,dataType : 'twellow'
                ,success : function(response) {
                    $(div).empty();
                    $.tmpl(response.template, response.data).appendTo(div);
                }
            });
        }
        $(this).attr('data-action', '');
    });
});

