<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
"http://www.brameco.com/promo_files/bostitch_flex_2011.pdf",
"http://www.brameco.com/ellison",
"http://www.brameco.com/newsprint/index.html",
"http://www.brameco.com/digicats.htm",
"http://www.brameco.com/kenwood/",
"http://www.brameco.com/fundraiser/",
"http://www.brameco.com/texturols/",
"http://piedmontprinting--brame.rocketquotes.com/portal",
"http://www.brameco.com/samsill/",
"http://www.brameco.com/Sanford/inkjoy.pdf",
"http://www.brameco.com/promo_files/avery1.pdf"
);

image = new initArray(
"http://www.brameco.com/images/bostitch_bnr.png",
"http://www.brameco.com/images/ellison.png",
"http://www.brameco.com/images/ruledpaper.png",
"http://www.brameco.com/images/catbanner.png",
"http://www.brameco.com/images/kenwood_banner.png",
"http://www.brameco.com/images/fundraiser_bnr.png",
"http://www.brameco.com/images/texturol_bnr.png",
"http://www.brameco.com/images/printing.png",
"http://www.brameco.com/images/sam1.png",
"http://www.brameco.com/images/san1.gif",
"http://www.brameco.com/images/avery1.png"
);

text = new initArray(
"Bostitch - Cool Products At Hot Prices",
"Ellison Die-Cut Machines",
"Ruled Writing Paper",
"View Brames Catalogs",
"Kenwood School Radios",
"First Aid Fundraiser",
"Texturol Kraft Rolls",
"Print Management Services",
"Samsill Speedy Spine Binder",
"Free $10 Gift Card With InkJoy Purchase",
"Free Target Gift Card When You Purchase Avery Products"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');

//-->
