// JavaScript Document

/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
img_name="kolosso.gif"
product_name="Laser Form";
descrip="Is it really cheaper to print on plain paper instead of preprinted forms? Not when you factor in the cost of toner, ink cartridges and consumables for your printer. And, is &quot;cheap&quot; the image you want to portray to your customers?";
}

if (quotes==1) {
img_name="dady-ohs.gif"
product_name="Business Form";
descrip="Think outside of the box! Every one of your customers sees your business forms so why not let us design a form to reflect the uniqueness of your business.";
}

if (quotes==2) {
img_name="bexx.gif"
product_name="Continuous Form";
descrip="Continuous forms aren't dead. They have many advantages over laser forms: the printers are inexpensive and easy to maintain; no messy and costly toner; save time by printing multiple copies simultaneously.";
}

if (quotes==3) {
img_name="fdc.gif"
product_name="Continuous Invoice";
descrip="Maximize your contact with customers. All of your customers see your invoices so why not advertise on them? It's a great opportunity to present new products or let them know about other services you offer. Since Marlin Printing &amp; Graphics never charges you for art or set-up, it won't cost you any extra.";
}

document.write('<p><img src="imgs/home/' + img_name + '" alt="Featured Product" width="201" height="121" /></p>');			
document.write('<p class="featured">Featured Product</p>');
document.write('<h3>' + product_name + '</h3>');
document.write('<p>' + descrip + '</p>');
document.write('<p><a href="products/">View all of our products</a></p>');


