//SAMPLE BLOCK~~~~~~~~~~~~~~~~~~~
// ESCAPE SINGLE QUOTES!!!!!!!!!
//text[number++] = [
//				  '/images/photos/special_design.jpg', // IMAGE LOCATION
//				  '" alt="special" />',
//				  '<p><font size="3">TEXT ABOUT IMAGE. escape single quotes like this: Don\'t</font></p>',
//				  '' // LEAVE THIS
//				  ].join("");
//
//START SCRIPT~~~~~~~~~~~~~~~~~~~~

var text = new Array;
var pre_text = [
				'<img class="shadow shadow_IE" style="float:left; margin-top: 15px; margin-right: 30px; margin-bottom: 10px" src="',
				''
				  ].join("");
				
var foot_text = [
				 ''
				 ].join("");

number = 0;

// START RANDOM IMAGES AND TEXT BLOCKS
text[number++] = [
				  '/images/photos/huge.jpg', // IMAGE LOCATION
				  '" alt="Huge hole through double rod air cylinder" />',
				  '<p><font size="3"><b>Huge hole through double rod cylinder</b><br /><br />',
				  'Cylinder specifications:<br />',
				  '10&quot; bore x 3-1/2&quot; stroke<br />',
				  '7&quot; Diameter hole through<br />',
				  '8&quot; Diameter rod</strong><br /><br />',
				  'Fabco-Air customized a Hi-Power&#8482; cylinder to fit into small parts assembly machinery. ',
				  'The large hole allows mechanical drives and pressure/vacuum lines to pass through to the point of use.<br /></font></p>',
				  ''	// LEAVE THIS
				  ].join("");

text[number++] = [
				  '/images/photos/pancakeII.jpg', // IMAGE LOCATION
				  '" alt="Pancake<sup>&reg;</sup> II Cylinder has been customized to fit small space" />',
				  '<p><font size="3"><b>Pancake<sup>&reg;</sup> II Cylinder has been customized to fit small space</b><br /><br/>',
				  'Fabco-Air adapted a standard cylinder by milling flats on both end caps ',
				  'for precision alignment in medical packaging machinery.<br /><br />4&quot; bore x 1&quot; stroke, the double acting cylinder has ',
				  'a high strength composite wall, hard chrome plated stainless steel piston rod, PTFE composite rod bearings and internally ',
				  'lubricated dynamic O-Rings.</font></p>',
				  '' // LEAVE THIS
				  ].join("");

text[number++] = [
				  '/images/photos/automotive.jpg', // IMAGE LOCATION
				  '" alt="Automotive under-hood application for drive train control" />',
				  '<p><font size="3"><b>Automotive under-hood application for drive train control</b><br /><br />',
				  'Cylinder specifications:<br />3-1/2&quot; bore x 1&quot; stroke<br />spring retracted, stainless steel piston rod, ',
				  'hard anodized aluminum body.<br /><br />',
				  'The body has eight 0.13&quot; breather holes in front of the piston and a special rod end. Mounting elements and the ',
				  'extend port are machined into the back end cap by the customer.</font></p>',
				  ''    // LEAVE THIS
				  ].join("");


text[number++] = [
				  '/images/photos/carriage.jpg', // IMAGE LOCATION
				  '" alt="Under carriage mobile equipment is corrosion resistant" />',
				  '<p><font size="3"><b>Under carriage mobile equipment is corrosion resistant</b><br /><br />',
				  '<b>Cylinder specifications:<br />2-1/2&quot; bore x 2&quot; stroke</b><br /><br />',
				  'Fabco-Air modified a standard cylinder by adding a stainless steel mounting pivot and machining ports in the front and rear ',
				  'end caps. Additionally the stainless steel rod is hard chrome plated while the housing and end caps are electroless nickel plated.</font></p>',
				  ''	// LEAVE THIS
				  ].join("");

text[number++] = [
				  '/images/photos/special_design.jpg', // IMAGE LOCATION
				  '" alt="special cylinder design meets length restrictions" />',
				  '<p><font size="3"><b>Special cylinder design meets length restrictions</b><br /><br />',
				  'A modified 5&quot; bore Hi-Power cylinder, designed with a special tool plate, uses long composite bushings for ',
				  'continuous guide shaft engagement.<br /><br />The bushings are supported at both ends in the heads. Length restrictions precluded ',
				  'use of overhanging guide shafts or double rod construction.</font></p>',
				  ''	// LEAVE THIS
				  ].join("");


text[number++] = [
				  '/images/photos/cartridge.jpg', // IMAGE LOCATION
				  '" alt="Special cartridge cylinder for food processing machinery" />',
				  '<p style="padding-top: 30px;"><font size="3"><b>Special cartridge cylinder solves design problems in food processing machinery</b><br /><br />',
				  'Fabco-Air developed this 3&quot; bore, 1/8&quot; stroke, double acting, double rod, air cylinder to mate into a machined cavity ',
				  'in the heart of food processing equipment.<br />',
				  'External O-Rings on the body seal air passages to the extend and retract ',
				  'ports (shown at 2:00 o\'clock in the photo). Designed for operation at 150 psi, the cylinder has a 2-1/4&quot; stainless ',
				  'steel rod with a 2&quot; hole through, PTFE impregnated hard-coated aluminum body components, and Viton seals for corrosion ',
				  'resistance and high wash-down tolerance.</font></p>',
				  ''	// LEAVE THIS
				  ].join("");

text[number++] = [
				  '/images/photos/DSC04797.jpg', // IMAGE LOCATION
				  '" alt="Round Hole-Through Cylinder for Synchronized Pick-up" />',
				  '<p><font size="3"><b>Round Hole-Through Cylinder for Synchronized Pick-up</b><br /><br />',
				  'Customer was trying to lift a product with 3 individual cylinders with unacceptable results. ',
				  'This &quot;ring&quot; cylinder incorporates three piston shafts into one piston for a smooth, non-binding actuation.</font></p>',
				  ''	// LEAVE THIS
				  ].join("");

text[number++] = [
				  '/images/photos/dual.jpg', // IMAGE LOCATION
				  '" alt="Dual bore air cylinder" />',
				  '<p><font size="3"><b>Dual bore air cylinder</b><br /><br />',
				  'Cylinder specifications:<br />50mm bore x 2&quot; stroke<br />Double acting with stainless steel piston rods and hard anodized aluminum body<br />',
				  '<br />Fabco-Air solved one design problem by providing integral nests machined into the cylinder body to enable precise alignment ',
				  'of the customer\'s tooling.</font></p>',
				  '' // LEAVE THIS
				  ].join("");


// END RANDOM IMAGES AND TEXT BLOCKS

//  PICK RANDOM BLOCK AND COMBINE WITH COMMON TEXT
increment = Math.floor(Math.random() * number);
//document.getElementById('spotlight').innerHTML= '<table width="700" border="0"><tr><td>' + pre_text + text[increment] + '</td></tr></table><div align="center">' + foot_text + '</div>';
