
/* =================================================== *
 * TITLE  : NBuy            | banners.js               *
 * AUTHOR : Kevin Scholl    | kscholl@comcast.net      *
 * CREATED: 01 Nov 2006     | UPDATED: 01 Nov 2006     *
 * =================================================== */

/* =================================================== *
// CREATE BANNER OBJECTS AND GROUP
 * =================================================== */

function bannerObj(url,target,loc,width,height,title) {
	this.target  = target; // link target
	this.url     = url;    // link URL
	this.loc     = loc;    // path and filename for image
	this.width   = width;  // width of image
	this.height  = height; // height of image
	this.desc    = title;  // alt and title attribute for image
	}

// =================================================== *
// EDIT START HERE

var BANNERGRP = new Array(11); // adjust for however many banners you have

BANNERGRP[0] = new bannerObj("http://www.dpbolvw.net/8j98shqnhp46A6BD664658E77EC","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-pillow.gif","728","90","nBuy Advertisement");
BANNERGRP[1] = new bannerObj("http://www.kqzyfj.com/8i115ar-xrzEGKGLNGGEGFJJMGLM","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-towel.gif","728","90","nBuy Advertisement");
BANNERGRP[2] = new bannerObj("http://www.kqzyfj.com/ki101mu2-u1HJNJOQJJHJIMIMOOO","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-store.gif","728","90","nBuy Advertisement");
BANNERGRP[3] = new bannerObj("http://www.kqzyfj.com/j5104zw41w3JLPLQSLLJLKPPNTTK","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-bedshop.gif","728","90","nBuy Advertisement");
BANNERGRP[4] = new bannerObj("http://www.tkqlhce.com/74102biroiq57B7CE77576B9ABD7?cm_mmc=CJ-_-1089770-_-1516811-_-468x60.gif","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-fabric2.gif","728","90","nBuy Advertisement");
BANNERGRP[5] = new bannerObj("http://www.kqzyfj.com/9n121ar-xrzEGKGLNGGEGFJKKFKI","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-spa.gif","728","90","nBuy Advertisement");
BANNERGRP[6] = new bannerObj("http://www.kqzyfj.com/oq68ox52x4KMQMRTMMKMLPQNQMR","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-towel2.gif","728","90","nBuy Advertisement");
BANNERGRP[7] = new bannerObj("http://www.kqzyfj.com/h4102nmvsmu9BFBGIBB9BAFGEGAH","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-modern.gif","728","90","nBuy Advertisement");
BANNERGRP[8] = new bannerObj("http://www.anrdoezrs.net/73108qgpmgo3595AC55354875D66","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-vintage.gif","728","90","nBuy Advertisement");
BANNERGRP[9] = new bannerObj("http://www.tkqlhce.com/l965r09608OQUQVXQQOQPTXYUQS","_top","http://shop.nbuy.com/feature-ads/images/banner-ad-home-sealy.gif","728","90","nBuy Advertisement");
BANNERGRP[10] = new bannerObj("http://www.kqzyfj.com/s875dlurlt8AEAFHAA8A9E9FDHB","_top","http://www.awltovhc.com/9f104wquiom79D9EG99798D8ECGA","728","90","nBuy Advertisement");




// EDIT END HERE
// =================================================== */

/* =================================================== *
// GET RANDOM NUMBER 
 * =================================================== */

function getRandomNum() {
	return (Math.floor(Math.random() * BANNERGRP.length));
  }

/* =================================================== *
// DYNAMICALLY WRITE OUT CONTENTS OF BANNERMAIN 
 * =================================================== */

function displayBanner() {
	var ranNum    = getRandomNum();
	var theBanner = BANNERGRP[ranNum];

	document.write('<a ');
	document.write('href="' + theBanner.url + '" target="' + theBanner.target + '"><img ');
	document.write('src="' + theBanner.loc + '" alt="' + theBanner.desc + '" title="' + theBanner.desc + '" width="' + theBanner.width + '" height="' + theBanner.height + '" border="0">');
	document.write('</a>');
	}
