//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(7);

images[0] = "<a href='http://www.bradysullivan.com' target='_blank'><img src='images/ffolio_1.gif' border='0'></a>";

images[1] = "<a href='http://www.benstrat.com' target='_blank'><img src='images/ffolio_3.gif' border='0'></a>";

images[2] = "<a href='http://www.cdbmotorsports.com' target='_blank'><img src='images/ffolio_6.gif' border='0'></a>";

images[3] = "<a href='http://www.weddingwarehouse.com' target='_blank'><img src='images/ffolio_2.gif' border='0'></a>";

images[4] = "<a href='http://www.massinvestmentgroup.com' target='_blank'><img src='images/ffolio_42.gif' border='0'></a>";

images[5] = "<a href='http://www.catscornervet.com' target='_blank'><img src='images/ffolio_43.gif' border='0'></a>";

images[6] = "<a href='http://www.victoriaschneider.com' target='_blank'><img src='images/ffolio_44.gif' border='0'></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done