
(function($){
	$.prepare = function(){
		jQuery('#outter > ol.volumes > li').each(function(){
			jQuery(this).children('div').hide();
			jQuery(this).bind('mouseover', function(){
				jQuery(this).children('div').show();
				return false;
			});
			jQuery(this).bind('mouseout', function(){
				jQuery(this).children('div').hide();
				return false;
			});
		});
	};
	$.prepareComentarios = function(){
		jQuery('#clubedolivro > ol > li').each(function(i, item){
			if (i >= 3) {
				jQuery(this).hide();
				jQuery(this).addClass('hidden');
			}
		});
		jQuery('#clubedolivro > a.maisdepoimento').click(function(){
			jQuery('#clubedolivro > ol > li.hidden').each(function(){
				jQuery(this).show();
				jQuery(this).removeClass('hidden');
			});
			jQuery(this).hide();
			return false;
		});
	};
})(jQuery);

jQuery(document).ready(function(){
	jQuery.prepare();
	jQuery.prepareComentarios();
});

