// JavaScript Document
var quotations = new Array()
quotations[0]= "<p class='sm'><img src='images/servicerotate_1.jpg' hspace='10' align='right' border='0' alt='Services' /> <p class='subtitlesubred'>Water Hauling</p>Waste Treatment Corporation has the capability to haul your oil and gas well fluids from your well locations or holding tanks....<br /><a href='services.html'>Read More</a></p>";
quotations[1]= "<p class='sm'><img src='images/servicerotate_2.jpg' hspace='10' align='right' border='0' alt='Services' /> <p class='subtitlesubred'>Production Fluids</p>Oil and gas producers in the Northern Tier of Pennsylvania as well as lower New York bring their production fluids to our plant to be processed...<br /><a href='services.html'>Read More</a></p>";
quotations[2]= "<p class='sm'><img src='images/servicerotate_3.jpg' hspace='10' align='right' border='0' alt='Contact' /> <p class='subtitlesubred'>Contact Us</p>Contact Waste Treatment Corporation using our online form...<br /><a href='contact.html'>Learn More</a></p>";

function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('rotate').innerHTML=quotations[a]
setTimeout("display()",15000)
}