usability = new Array();
standards = new Array();
accessibility = new Array();

usability[0] = "Can any page be found in three or less links?";
usability[1] = "For larger web sites, is a site map and/or search function provided?";
usability[2] = "Do links provide hover and visited states?";
usability[3] = "Is layout and navigation consistent throughout the site?";

standards[0] = "Do the web pages have a document type and language designated?";
standards[1] = "Do the web pages contain semantic code?";
standards[2] = "Is CSS used for all styling in the web site?";
standards[3] = "Does the code on your site pass <a href=\"http://validator.w3.org/\" rel=\"external\">W3C validation</a>?";

accessibility[0] = "Is it possible to tab through all the links on your web site, including all navigation?";
accessibility[1] = "Do all of your images have alternative text?";
accessibility[2] = "Are the headings on each page properly tagged as headings?";
accessibility[3] = "Do all input form elements have a label?";
accessibility[4] = "Do data tables have the proper markup?";

indexUsability = Math.floor(Math.random() * standards.length);
indexStandards = Math.floor(Math.random() * usability.length);
indexAccessibility= Math.floor(Math.random() * accessibility.length);

function makeInspectionList() {
	document.write("<ol class=\"first_para\">\n");
	document.write("<li>" + usability[indexUsability] + "</li>");
	document.write("<li>" + standards[indexStandards] + "</li>");
	document.write("<li>" + accessibility[indexAccessibility] + "</li>");
	document.write("</ol>\n");
}
