﻿function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "<div id='Footer'><div id='Footer-left'><div id=Footer-services><img src='images/footer-rental.jpg' id='footerphoto' alt=Services - Rental/></div><p id='footertext'><b>Fisher Contracting Services - Equipment Rental</b><br />Fisher Contracting Company owns and maintains a large and extensive fleet of heavy equipment, trucks and ancillary equipment. All these are available for daily rental or long term rental/lease. We have highly qualified Operating Engineers with many years of experience and specialized training to operate the heavy equipment, which is serviced and maintained by Fisher shop and field mechanics.</p></div><div id='footerinfo'><a href='rental-Fisher-Contracting.aspx'>More Info &raquo;</a></div></div>"  
random_text[number++] = "<div id='Footer'><div id='Footer-left'><div id=Footer-services><img src='images/footer-construction.jpg' id='footerphoto' alt=Services - Heavy Construction/></div><p id='footertext'><b>Fisher Contracting Services - Heavy Construction</b><br />Our management, staff and field personnel have the knowledge and experience necessary to address virtually every type of heavy construction project. Contact Fisher for a list of our current and past projects and owners.</p></div><div id='footerinfo'><a href='services-construction-Fisher-Contracting.aspx'>More Info &raquo;</a></div></div>"  
random_text[number++] = "<div id='Footer'><div id='Footer-left'><div id=Footer-services><img src='images/footer-demolition.jpg' id='footerphoto' alt=Services - Demolition/></div><p id='footertext'><b>Fisher Contracting Services - Demolition</b><br />Fisher Contracting Company has the experience, capability and know-how necessary to perform whatever demolition project you may have. A list of our current and past demolition projects is available upon request.</p></div><div id='footerinfo'><a href='services-demolition-Fisher-Contracting.aspx'>More Info &raquo;</a></div></div>"  
random_text[number++] = "<div id='Footer'><div id='Footer-left'><div id=Footer-services><img src='images/footer-piping.jpg' id='footerphoto' alt=Services - Piping/></div><p id='footertext'><b>Fisher Contracting Services - Piping</b><br />Fisher Contracting Company has installed HDPE membranes and piping for several years, beginning with small installations which were part of larger excavating or utility projects. As HDPE products became more widely used and specified. Fisher has continued to install them, often as ‘stand-alone’ projects.</p></div><div id='footerinfo'><a href='services-piping-Fisher-Contracting.aspx'>More Info &raquo;</a></div></div>"  

// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
-->


