// JavaScript Document


$(document).ready(function(){
		var total_div_nbr = 15;
		var parag_id = '';
		$(".read_next_btn").click(function(){
			parag_id = $(this).attr('alt');
			for(var i=0; i<total_div_nbr; i++){
				//reset all the 'the_rest_of_the_text' div
				if(parag_id!=i)
				$('#the_rest_of_the_text_'+i).slideUp("fast");
				$('#read_next_btn_'+i).css('position', 'relative');
				$('#read_next_btn_'+i).css('visibility', 'visible');
			}
			$('#the_rest_of_the_text_'+parag_id).css('position', 'relative');
			$('#the_rest_of_the_text_'+parag_id).css('visibility', 'visible');
			$('#the_rest_of_the_text_'+parag_id).slideDown("fast");
			$('#read_next_btn_'+parag_id).css('position', 'visible');
			$('#read_next_btn_'+parag_id).css('visibility', 'hidden');
		});
		
		for(i=0; i<total_div_nbr; i++){
			//reset all the 'the_rest_of_the_text' div
			$('#the_rest_of_the_text_'+i).slideUp("fast");
			$('#the_rest_of_the_text_'+i).css('position', 'absolute');
			$('#the_rest_of_the_text_'+i).css('visibility', 'hidden');
		}	
		
		$('#the_rest_of_the_text_0').css('position', 'relative');
		$('#the_rest_of_the_text_0').css('visibility', 'visible');
		$('#the_rest_of_the_text_0').slideDown("fast");
		$('#read_next_btn_0').css('position', 'visible');
		$('#read_next_btn_0').css('visibility', 'hidden');
	});
