// Prevent conflict with other js libs
jQuery.noConflict();
     
jQuery(document).ready(function($){
	// Do jQuery stuff using $
	if($("#commentlist").length > 0) {
		//alert('Test thread-reply plugins : comment count = ' + $("#commentlist").children().length);
		//$("#commentlist").children("li:even");
		
		// 1. Find all reply, indicated by @[THREAD_NAME] then put to dictionary?
		// See http://www.javascriptkata.com/2007/03/29/how-to-use-javascript-hashes/
		// 2. Need some sleep!!
	}
});

