<!--

/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='We Serve 9 Western New York Counties!'
mycontent[2]='Think ABUNDANCE in 2011!'
mycontent[3]='Efficient * Reliable * TRUSTED!'
mycontent[4]='Use the Contact Us link below for a quote.'
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
//-->

