//				imageSRC		linkURL			imageALT	target (1=yes,0=no)

var numPhotos = 9;
var photos = [	"left_side_call1.gif",	"",				"The sales team walked away energized and armed with the specific needs within a contact center.    e-talk Corporation",	0,
				"left_side_call2.gif",	"",				"Bob's keynote presentation conveyed actionable ideas in a fun and interactive format that was incredibly well received.  Concerto Software",	0,
				"left_side_call3.gif",	"",				"Your speech on Leadership was exactly what I needed.  I have been reading a lot lately on how to be a better leader.  You pulled it all together into one program.  The story about priorities made me re-evaluate my list.    Audience Member",	0,
				"left_side_call4.gif",	"",				"Your story about your son was really emotional – I am going home,  hug my kids and dedicate this weekend to THEM.   Audience Member",	0,
				"left_side_call5.gif",	"",				"I just wish that I had more time to spend with my manager.  I want him to tell me how to improve…. front-line employee",	0,
				"left_side_call6.gif",	"",				"I just want the company to make me feel that I matter.  I know what I do is important.  I just want THEM to acknowledge what I do.  front-line employee",	0,
				"left_side_call7.gif",	"",				"The last few years have caused a fusion of the contact center with the rest of the company.  The center now has to justify what it does to boost the bottom line of the company. Leading call center publication",	0,
				"left_side_call8.gif",	"",				"Your Roadmap gave us the detailed action plan that we needed in order to move our organization to change.  We now have a prioritized list to help us focus our budget, our resources and our time.   Leading University",	0,
				"left_side_call9.gif",	"",				"I just pulled out the Roadmap that you did for us two years ago.  I was putting together our budgets and wanted to see what we had not done yet….   Director – Fortune 500 Company",	0			]

var photoLength = photos.length
var photoSlot = new MakeArray(photoLength)
var counter = 0
for (i=0; i < photoLength; i++) {
	photoSlot[counter] = new buildButton1(photos[i++],photos[i++],photos[i++],photos[i])
	counter++
}





var numPhotos1 = 4;
var photos1 = [	"footer1.gif",	"",				"",	0,
				"footer2.gif",	"",				"",	0,
				"footer3.gif",	"",				"",	0,
				"footer4.gif",	"",				"",	0			]

var photoLength1 = photos1.length
var photoSlot1 = new MakeArray(photoLength1)
var counter = 0
for (i=0; i < photoLength1; i++) {
	photoSlot1[counter] = new buildButton1(photos1[i++],photos[i++],photos[i++],photos[i])
	counter++
}



var numPhotos2 = 6;
var photos2 = [	"left_side1.gif",	"",				"",	0,
				"left_side2.gif",	"",				"",	0,
				"left_side3.gif",	"",				"",	0,
//				"left_side4.gif",	"",				"",	0,
				"left_side5.gif",	"",				"",	0,
				"left_side6.gif",	"",				"",	0,
				"left_side7.gif",	"",				"",	0			]

var photoLength2 = photos2.length
var photoSlot2 = new MakeArray(photoLength2)
var counter = 0
for (i=0; i < photoLength2; i++) {
	photoSlot2[counter] = new buildButton1(photos2[i++],photos[i++],photos[i++],photos[i])
	counter++
}



var numPhotos3 = 3;
var photos3 = [	"contact_1.jpg",	"",				"",	0,
				"contact_2.jpg",	"",				"",	0,
//				"contact_3.jpg",	"",				"",	0,
				"contact_3.jpg",	"",				"",	0			]

var photoLength3 = photos3.length
var photoSlot3 = new MakeArray(photoLength3)
var counter = 0
for (i=0; i < photoLength3; i++) {
	photoSlot3[counter] = new buildButton1(photos3[i++],photos[i++],photos[i++],photos[i])
	counter++
}


//var numSlot1 = 5;
//var slot1 = [	//"random1.gif",	"/web/services/airbrush.html",	"Airbrush Tanning Services",	1,
//				"random2.gif",	"/web2/services/nails.html",	"Our Manicure Services",	1,
//				"random4.gif",	"/web2/services/hair.html",	"Hair Removal Services",	1,
//				"random5.gif",	"/web2/services/facials.html",	"Our Facial Services",	1,
//				"random6.gif",	"/web2/services/massage.html",	"Massage Services",	1,
//			 	"random3.gif",	"/web2/packages/index.html",	"Look Into Our Special Packages",	1			]


//var numPhotosA = 7;
//var photosA = [	"two.1.jpg",	"",				"photo1",	0,
//				"two.2.jpg",	"",				"photo2",	0,
//				"two.3.jpg",	"",				"photo3",	0,
//				"two.4.jpg",	"",				"photo4",	0,
//				"two.5.jpg",	"",				"photo5",	0,
//				"two.6.jpg",	"",				"photo6",	0,
//				"two.7.jpg",	"",				"photo7",	0			]

//var photoLengthA = photosA.length
//var photoSlotA = new MakeArray(photoLengthA)
//var counter = 0
//for (i=0; i < photoLengthA; i++) {
//	photoSlotA[counter] = new buildButton1(photosA[i++],photosA[i++],photosA[i++],photosA[i])
//	counter++
//}



//var slotLength = slot1.length
//var slotOne = new MakeArray(slotLength)
//var counter = 0
//for (i=0; i < slotLength; i++) {
//	slotOne[counter] = new buildButton1(slot1[i++],slot1[i++],slot1[i++],slot1[i])
//	counter++
//}

function MakeArray(n){
	this.length = n
	return this
}

function buildButton1(a,b,c,d) {
	this.imageSRC = a
	this.linkURL = b
	this.imageALT = c
	this.linkTarget = d
}

function over(x) {
	setStatusBar(x)
}

function setStatusBar(x) {
	window.status = x
	return true
}
