jQuery.noConflict();

jQuery(document).ready(function($){
	$('.comments_hider').hide();
	$('.header').click(function() {
		$('.comments_hider').toggle('slow');
		return false;
	});
});