var chapters = { "c1":"chapter1.html", "c2":"chapter2.html", "c3":"chapter3.html", "c4":"chapter4.html", "c5":"chapter5.html", "c6":"chapter6.html" } $(document).ready(function() { $('
').appendTo("#story-toh-als"); $("#buttons").html('< Previous Chapter Next Chapter >'); }); function init() { $.ajax({url:"sendrequest.php"}).done(function(html) { document.getElementById("status").innerHTML=html; document.getElementById("sendagain").innerHTML='Send another'; }); } function again() { document.getElementById("status").innerHTML=''; document.getElementById("sendagain").innerHTML=""; } function noaddress() { alert("Sorry, we don't currently have a contact email address for RiverSparrow, but we're working on it. In the meantime contact the webmaster and he will forward it to RiverSparrow."); } function prev() { chapter = chapter - 1; if(chapter==0) { location.href=chapters.c1; } else if(chapter==1) { location.href=chapters.c1; } else if(chapter==2) { location.href=chapters.c2; } else if(chapter==3) { location.href=chapters.c3; } else if(chapter==4) { location.href=chapters.c4; } else if(chapter==5) { location.href=chapters.c5; } else if(chapter==6) { location.href=chapters.c6; } else { alert("Unknown error."); } } function next() { chapter = chapter + 1; if(chapter==0) { location.href=chapters.c1; } else if(chapter==1) { location.href=chapters.c1; } else if(chapter==2) { location.href=chapters.c2; } else if(chapter==3) { location.href=chapters.c3; } else if(chapter==4) { location.href=chapters.c4; } else if(chapter==5) { location.href=chapters.c5; } else if(chapter==6) { location.href=chapters.c6; } else { alert("Unknown error."); } }