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

BANNERGRP[0] = new bannerObj("http://www.yourequity.com","_top","http://www.nbuy.com/ads-nbuy/ad-yourequity.gif","610","90","Unlock the Value of Your Home");
BANNERGRP[1] = new bannerObj("http://www.nbuy.com/vacation","_top","http://www.nbuy.com/ads-nbuy/ad-travelcenter.gif","610","90","Discount Travel Center");
BANNERGRP[2] = new bannerObj("http://www.saystudent.com/college-budget.html","_top","http://www.nbuy.com/ads-nbuy/ad-saystudentbudget.gif","610","90","College Student Budgeting");
BANNERGRP[3] = new bannerObj("http://www.saystudent.com","_top","http://www.nbuy.com/ads-nbuy/ad-saystudent.gif","610","90","Solve College Financing Needs");
BANNERGRP[4] = new bannerObj("http://www.saylowerbills.com","_top","http://www.nbuy.com/ads-nbuy/ad-saylowerbills.gif","610","90","Lower Your Bills");
BANNERGRP[5] = new bannerObj("http://www.sayimprove.com","_top","http://www.nbuy.com/ads-nbuy/ad-sayimprove.gif","610","90","Home Improvement Ideas");
BANNERGRP[6] = new bannerObj("http://www.saygoodcredit.com","_top","http://www.nbuy.com/ads-nbuy/ad-saygoodcredit.gif","610","90","Build Your Credit");
BANNERGRP[7] = new bannerObj("http://www.offtocollege.com","_top","http://www.nbuy.com/ads-nbuy/ad-offtocollege.gif","610","90","College Planning Guide");
BANNERGRP[8] = new bannerObj("http://www.nbuy.com/garage","_top","http://www.nbuy.com/ads-nbuy/ad-nbuygarage.gif","610","90","Auto Center");
BANNERGRP[9] = new bannerObj("http://www.nbuy.com/credit-cards","_top","http://www.nbuy.com/ads-nbuy/ad-nbuycards.gif","610","90","Credit Card Center");
BANNERGRP[10] = new bannerObj("http://www.nacbb.com","_top","http://www.nbuy.com/ads-nbuy/ad-nacbb.gif","610","90","Business Brokerage");
BANNERGRP[11] = new bannerObj("http://www.saylending.com/sayfinance/income.html","_top","http://www.nbuy.com/ads-nbuy/ad-income.gif","610","90","Growing Your Income");
BANNERGRP[12] = new bannerObj("http://www.saylending.com/id-theft.html","_top","http://www.nbuy.com/ads-nbuy/ad-idtheft.gif","610","90","Preventing ID Theft");
BANNERGRP[13] = new bannerObj("http://www.webreader.com/download/student/aid-map.pdf","_top","http://www.nbuy.com/ads-nbuy/ad-fund-college.gif","610","90","College Planning Guide");
BANNERGRP[14] = new bannerObj("http://www.saystudent.com/private-student-loans.html","_top","http://www.nbuy.com/ads-nbuy/ad-collegemoney.gif","610","90","Send More Money for College");
BANNERGRP[15] = new bannerObj("http://www.sayplanning.com/mappingmycareer/","_top","http://www.nbuy.com/ads-nbuy/ad-career.gif","610","90","Build Your Career");


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