//Random image loading
//Countdown script by Mike Thompson
//http://www.members.tripod.com/webdesign123now/
//Based on script by Website Abstraction (http://wsabstract.com)
function random_imglink(){
var myimages=new Array()

//specify corresponding text below
var h1text=new Array()
h1text[1]="STONE-2-STONE DECK FIREPLACE"
h1text[2]="MINNESOTA WINTER AND TILE OUTDOOR FLOOR "
h1text[3]="DINE OUT ON YOUR OWN STONE TERRACE WITH A VIEW"
h1text[4]="LEVEL THE ROOFTOP STONE DECK"
h1text[5]="INSIDE OUTSIDE SAME GREAT LOOK"
h1text[6]="WOOD BURNING FIREPLACE ON A DECK"
h1text[7]="REST IN COMFORT OUTSIDE"
h1text[8]="COOKING OIL CLEANS EASY"
h1text[9]="STONE TILES WILL SUPPORT IT"

//specify corresponding text below
var h2text=new Array()
h2text[1]="Feel the warmeth from this 2nd floor stone decking fireplace setting."
h2text[2]="Are the two compatible with the extreme weather conditions for decking?"
h2text[3]="This gauged stone tile can support outdoor table weight and heavy entertaining."
h2text[4]="Water drains through the open joints to the waterproofing below."
h2text[5]="Your inside space can flow to the outdoors for a smooth outdoor floor transition."
h2text[6]="Wood burning is okay around this stone or tile decking."
h2text[7]="This outdoor rooftop tile decking cleans like your best indoor floor."
h2text[8]="No stains here. Spill it and wipe it. No mess. No Fuss."
h2text[9]="Traditional outdoor furniture will rest nicely on your stone decking."

//specify random images below. You can have as many as you wish
var myimages=new Array()
myimages[1]="productpics/pic01a.jpg"
myimages[2]="productpics/pic02a.jpg"
myimages[3]="productpics/pic03a.jpg"
myimages[4]="productpics/pic04a.jpg"
myimages[5]="productpics/pic05a.jpg"
myimages[6]="productpics/pic06a.jpg"
myimages[7]="productpics/pic07a.jpg"
myimages[8]="productpics/pic08a.jpg"
myimages[9]="productpics/pic09a.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="productpg/pg_pic01.htm"
imagelinks[2]="productpg/pg_pic02.htm"
imagelinks[3]="productpg/pg_pic03.htm"
imagelinks[4]="productpg/pg_pic04.htm"
imagelinks[5]="productpg/pg_pic05.htm"
imagelinks[6]="productpg/pg_pic06.htm"
imagelinks[7]="productpg/pg_pic07.htm"
imagelinks[8]="productpg/pg_pic08.htm"
imagelinks[9]="productpg/pg_pic09.htm"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<div class="pictureh1">'+h1text[ry]+'</div><div class="pictureh2">'+h2text[ry]+' <a href='+'"'+imagelinks[ry]+'"'+' class="bodylink">more</a></div><div class="picturelink"><a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" title="MORE STONE DECKING STORY" border="0" width="580" height="200"></a></div>')
}