// previous-next button functionality

//page array
var link_array = new Array();
 link_array[1] = 'index.html';
 link_array[2] = 'story01.html';
 link_array[3] = 'story02.html';
 link_array[4] = 'story03.html';
 link_array[5] = 'story04.html';
 link_array[6] = 'story05.html';
 link_array[7] = 'story06.html';
 link_array[8] = 'story07.html';
 link_array[9] = 'story08.html';
 link_array[10] = 'story09.html';
 link_array[11] = 'story10.html';
 link_array[12] = 'story11.html';
 link_array[13] = 'story12.html';


// skip fwd
 function next()
 {
	if ((pagecount + 1) >= link_array.length)
	{
		window.location.href = link_array[1];
	}
	else
	{
		++pagecount;
//		document.location.href = link_array[count];
		window.location.href = link_array[pagecount];
	}
 }
  // skip back
 function previous()
 {
	if ((pagecount - 1) <= 0)
	{
		window.location.href = link_array[13];
	}
	else
	{
		--pagecount;
//		document.location.href = link_array[count];
		window.location.href = link_array[pagecount];
	}
 }