// JavaScript Document
var low = 0
var high = 4
var a = Math.floor(Math.random() * (1 + high - low) + low)

scriptures = new Array
scriptures[0] = "<p>This portion of the site still under construction.<p>"
scriptures[1] = "<p>This portion of the site still under construction.<p>"
scriptures[2] = "<p>This portion of the site still under construction.<p>"
scriptures[3] = "<p>This portion of the site still under construction.<p>"
scriptures[4] = "<p>This portion of the site still under construction.<p>"

var script = scriptures[a]
document.write(script);