/* =================================================== *
 * 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(20); // adjust for however many banners you have

BANNERGRP[0] = new bannerObj("http://www.saylending.com/market-values.html","_top","http://www.nbuy.com/ads-lending/z-tag-appraise.jpg","150","250","What is Your Home Worth?");
BANNERGRP[1] = new bannerObj("http://refer.ccbill.com/cgi-bin/clicks.cgi?CA=928797-0000&PA=956523","_top","http://www.nbuy.com/ads-lending/z-tag-auto.jpg","150","250","Find a Cheap Car");
BANNERGRP[2] = new bannerObj("http://www.nbuy.com/bargain/index.html","_top","http://www.nbuy.com/ads-lending/z-tag-bargain.gif","150","250","Basement Bargain Prices");
BANNERGRP[3] = new bannerObj("http://www.saylending.com/id-theft.html","_top","http://www.nbuy.com/ads-lending/z-tag-credit.jpg","150","250","Take Caution against ID Theft");
BANNERGRP[4] = new bannerObj("http://www.nbuy.com/environment/index.html","_top","http://www.nbuy.com/ads-lending/z-tag-diet.jpg","150","250","Maintaining Good Health");
BANNERGRP[5] = new bannerObj("http://www.ebates.com/landing.jsp?banner=33498","_top","http://www.nbuy.com/ads-lending/z-tag-ebates1.gif","150","250","Get Paid to Shop");
BANNERGRP[6] = new bannerObj("http://www.ebates.com/landing.jsp?banner=33498","_top","http://www.nbuy.com/ads-lending/z-tag-ebates2.gif","150","250","Get Paid to Shop");
BANNERGRP[7] = new bannerObj("http://www.yourequity.com/ads4/","_top","http://www.nbuy.com/ads-lending/z-tag-eq-debt.jpg","150","250","Help me reduce my debts");
BANNERGRP[8] = new bannerObj("http://www.saylending.com/sayfinance.html","_top","http://www.nbuy.com/ads-lending/z-tag-eq-finance.jpg","150","250","Financial Tips");
BANNERGRP[9] = new bannerObj("http://www.yourequity.com/ads3/","_top","http://www.nbuy.com/ads-lending/z-tag-eq-goal.jpg","150","250","Time to set New Year goals");
BANNERGRP[10] = new bannerObj("http://www.nbuy.com/party/story_download.html","_top","http://www.nbuy.com/ads-lending/z-tag-ghost.jpg","150","250","Ghost Story");
BANNERGRP[11] = new bannerObj("http://www.nBuy.com/environment/download_book.html","_top","http://www.nbuy.com/ads-lending/z-tag-goal.jpg","150","250","Goal Book");
BANNERGRP[12] = new bannerObj("http://www.nbuyplaza.healthwayz.com/","_top","http://www.nbuy.com/ads-lending/z-tag-health.jpg","150","250","Family Health");
BANNERGRP[13] = new bannerObj("http://www.nbuy.com/bargain/clothes/index.html","_top","http://www.nbuy.com/ads-lending/z-tag-kidswear.jpg","150","250","Bargain Clothes");
BANNERGRP[14] = new bannerObj("http://www.kaymaxwell.com/jewelry/index.html","_top","http://www.nbuy.com/ads-lending/z-tag-maxwell.jpg","150","250","Bargain Clothes");
BANNERGRP[15] = new bannerObj("http://www.nbuy.com/kitchen/index.html","_top","http://www.nbuy.com/ads-lending/z-tag-kitchen.jpg","150","250","Bargain Clothes");
BANNERGRP[16] = new bannerObj("http://www.offtocollege.com/college-online-search.html","_top","http://www.nbuy.com/ads-lending/z-tag-school.jpg","150","250","Online Schools");
BANNERGRP[17] = new bannerObj("http://travelocity.com/","_top","http://www.nbuy.com/ads-lending/z-tag-travel1.jpg","150","250","Travel Bargains");
BANNERGRP[18] = new bannerObj("http://www.travelocity.com/Cruises/","_top","http://www.nbuy.com/ads-lending/z-tag-travel1.jpg","150","250","Travel Cruises");
BANNERGRP[19] = new bannerObj("http://travelocity.lmdeals.com/","_top","http://www.nbuy.com/ads-lending/z-tag-travel3.jpg","150","250","Travel Cruises");


// 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>');
	}