// JavaScript Document


function post_init(){
	$('.the_rest').hide();
	$('.read_more').show();
//	$('.hide_more').hide();
	$('.read_more').click(function(){
//		$('.the_rest:visible').hide();
		var rest = $(this).prev();
		var hider = $(this).next();
		rest.show();
		hider.show();
//		$('.read_more:hidden').show();
		$(this).hide();
	});
	$('.hide_more').click(function(){
		var rest = $(this).prev().prev();
		var shower = $(this).prev();
		rest.hide();
		shower.show();
		$(this).hide();
	});
}
