﻿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++] = "<small>Alpha Plastics associates are dedicated to providing the highest quality extrusions on time, which meet or exceeds our customer’s expectations!</small>"
random_text[number++] = "<small>Experience counts! Alpha plastics has been in business for over 25 years, bringing the experience, the expertise and the know-how to do your job right –on time, and on budget.</small>"
random_text[number++] = "<small>Top-notch engineering! Our qualified engineering staff will carefully evaluate all aspects of your part, in order to give you the most efficient tooling solution.</small>"
random_text[number++] = "<small>Get a quick quote – submit your request for a quote on our new, improved website! Get an answer back with in 2 business days!</small>"
random_text[number++] = "<small>Quality makes the difference: Alpha plastics is on the cutting edge, and has reached a level of quality and service that is second to none in the industry.</small>"
random_text[number++] = "<small>On time – on budget! Let Alpha Plastics make your job easier and lower your costs. From design to delivery, you can be assured the process will be a pleasant one that saves you time and money.</small>"
random_text[number++] = "<small>The right materials: Our research and development team will work to specially select materials that meet your unique needs and ensure strength, durability and quality.</small>"

// 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]);
-->


