//loop1
var links = [];

links[0] = new Array('http://www.sciway.net/photos/coast-sc/dirleton-plantation-house.html','/right-column/1/dirleton-plantation.jpg','Dirleton Plantation House in Georgetown County');
links[1] = new Array('/berkeley/foxbank.html','/right-column/1/foxbank-plantation.jpg','Fox Bank Plantation in Moncks Corner');
links[2] = new Array('/georgetown/friendfield-sampit-river.html','/right-column/1/friendfield-plantation-sampit-river.jpg','Friendfield Plantation in Georgetown');
links[3] = new Array('/sumter/leonard-brown.html','/right-column/1/leonard-brown-house.jpg','Leonard Brown House in Mayesville');
links[4] = new Array('http://www.sciway.net/photos/coast-sc/loch-dhu-plantation.html','/right-column/1/loch-dhu-plantation.jpg','Loch Dhu Plantation in Cross');
links[5] = new Array('http://www.sciway.net/photos/coast-sc/middleton-place-house-museum.html','/right-column/1/middleton-skyline.jpg','Middleton Place House Museum in West Ashley');
links[6] = new Array('/aiken/rose-hill.html','/right-column/1/rose-hill-aiken.jpg','Rose Hill Plantation in Aiken County');
links[7] = new Array('/beaufort/coffin-point.html','/right-column/1/coffin-point.jpg','Coffin Point Plantation in Beaufort County');

var random = Math.floor(Math.random()*8);

function printLoop1(){document.write('<a href='+links[random][0]+'><img src='+links[random][1]+'></a><a id=righttext href='+links[random][0]+'>'+links[random][2]+'</a>' )}

//loop2
var links1 = [];

links1[0] = new Array('http://www.sciway.net/photos/coast-sc/boone-hall.html','/right-column/2/boone-hall.jpg','Boone Hall Plantation in Charleston');
links1[1] = new Array('http://www.sciway.net/photos/coast-sc/guendalos-plantation.html','/right-column/2/guendalos-plantation.jpg','Guendalos Plantation House near Chapel Creek');
links1[2] = new Array('http://www.sciway.net/photos/coast-sc/hampton-plantation.html','/right-column/2/hampton-oak.jpg','Hampton Plantation in McClellanville');
links1[3] = new Array('/charleston/mcleod.html','/right-column/2/mcleod-slave-cabins.jpg','McLeod Plantation on James Island ');
links1[4] = new Array('http://www.sciway.net/photos/midlands-sc/redcliffe-plantation.html','/right-column/2/redcliffe-plantation.jpg','Redcliffe Plantation in Aiken County');
links1[5] = new Array('/lee/tanglewood.html','/right-column/2/tanglewood-plantation.jpg','Tanglewood Plantation in Lynchburg ');
links1[6] = new Array('/berkeley/comingtee.html','/right-column/2/comingtee.jpg','Comingtee Plantation in Berkeley County ');

var random = Math.floor(Math.random()*7);

function printLoop2(){document.write('<a href='+links1[random][0]+'><img src='+links1[random][1]+'></a><a id=righttext href='+links1[random][0]+'>'+links1[random][2]+'</a>' )}
