// JavaScript Document

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.namesandnumbers.com/Products/",
"http://www.namesandnumbers.com/Advertise-In-Our-Phone-Books/",
"http://www.twitter.com/namesandnumbers",
"http://www.namesandnumbers.com/Advertise-In-Our-Phone-Books/",
"http://www.facebook.com/namesandnumbers",
"http://www.namesandnumbers.com/Need-Another-Phone-Book/",
"http://www.namesandnumbers.com/Advertise-In-Our-Phone-Books/",
"http://www.namesandnumbers.com/Products/Mobile-Search/"
);

target = new initArray(
"_self",
"_self",
"_blank",
"_self",
"_blank",
"_self",
"_self",
"_self"
);

image = new initArray(
"http://www.namesandnumbers.com/banners/marketbanner.gif",
"http://www.namesandnumbers.com/banners/marketbanner1.gif",
"http://www.namesandnumbers.com/banners/marketbanner2.gif",
"http://www.namesandnumbers.com/banners/marketbanner3.gif",
"http://www.namesandnumbers.com/banners/marketbanner4.gif",
"http://www.namesandnumbers.com/banners/marketbanner5.jpg",
"http://www.namesandnumbers.com/banners/marketbanner6.gif",
"http://www.namesandnumbers.com/banners/marketbanner10.jpg"
);

text = new initArray(
"When &amp; Where You Need It!",
"What are business owners saying?",
"Follow us on Twitter",
"We'll Make Your Phone RING!",
"Become a Fan - Facebook",
"Need Another Phone Book?",
"What are business owners saying?",
"Apps On-the-Go!"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var runlink  = link[core];
var runtarget  = target[core];
var runimage = image[core];
var runtext  = text[core];

document.write('<a href=\"' +runlink+ '\" target=\"'+runtarget+'\"><img src=\"'+runimage+'\" border="0" alt=\"'+runtext+'\"></a>');


