(function($){
	$.fn.comment_show = function(options) {

		return this.each(function() {
			obj = $(this);
			obj.find('.tiny').hide();
			
			// set onclick event for more/less link
			obj.mouseover(function() {
				$('#'+$(this).find('div:last').attr('id')+'').show();
				return true;
			});
			
			obj.mouseout(function() {
				$('#'+$(this).find('div:last').attr('id')+'').hide();
				return true;
			});
		});
	};
})(jQuery);
