<!--

// Galaxy Design International Rotating Banner Script.
// www.galaxydi.com
// 770-449-6076

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.yellomojo.com/feat_product.asp",
"http://www.yellomojo.com/feat_product.asp",
"http://www.yellomojo.com/feat_product.asp"
);

image = new initArray(
"http://www.yellomojo.com/picrotation/product-1.jpg",
"http://www.yellomojo.com/picrotation/product-2.jpg",
"http://www.yellomojo.com/picrotation/product-3.jpg"
);

text = new initArray(
"Click HERE to View the Product Gallery!",
"Click HERE to View the Product Gallery!",
"Click HERE to View the Product Gallery!"
);

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>');

//-->