Первый снипп не работал. Тем не менее, он начинает работать при замене всех $ (знак доллара) на jQuery (см. Второй фрагмент). Но я действительно не понимаю, почему? Кто-нибудь может мне это объяснить? Большое спасибо!
1-й сниппет
jQuery.noConflict();
               $(document).ready(function(){    
                    $("#insideTable > tbody > tr:odd").addClass("odd");
                    $("#insideTable > tbody > tr:not(.odd)").hide();
                    $("#insideTable > tbody > tr:odd").show();
                    $("#insideTable > tbody > tr.odd").click(function(){
                        $(this).next().toggle();
                        $(this).find(".arrow").toggleClass("up");
                    });
                });
2-й сниппет
        jQuery.noConflict();
        jQuery(document).ready(function(){
                jQuery("#insideTable > tbody > tr:odd").addClass("odd");
                jQuery("#insideTable > tbody > tr:not(.odd)").hide();
                jQuery("#insideTable > tbody > tr:odd").show();
                jQuery("#insideTable > tbody > tr.odd").click(function(){
                    jQuery(this).next().toggle();
                    jQuery(this).find(".arrow").toggleClass("up");
                });
            });