//Developed by Zeis Group, Inc. : Chris Lightner for Carrollton Bank 2006
function arrayFeatures() {
// numOfVar is the number of variations of the art and text	
var numOfVar = 9;

var i = Math.floor(Math.random() * numOfVar);

var hyperlink = [];
var source = [];
var alternate = [];

hyperlink[0] = "debitcard.htm";
source[0] = "images/features/feature_f01.gif";
alternate[0] = "Smart Money Thought: Sign, swipe and start saving time and money.";

hyperlink[1] = "checking.htm";
source[1] = "images/features/feature_f02.gif";
alternate[1] = "Smart Money Thought: Over 55? Get the checking account that gives you more…";

hyperlink[2] = "consolidation.htm";
source[2] = "images/features/feature_f03.gif";
alternate[2] = "Smart Money Thought: Save thousands on the debt you already owe…";

hyperlink[3] = "utility.htm";
source[3] = "images/features/feature_f04.gif";
alternate[3] = "Smart Money Thought: Save time and trouble by paying utility bills automatically…";

hyperlink[4] = "onlinebanking.htm";
source[4] = "images/features/feature_f05.gif";
alternate[4] = "Smart Money Thought: Avoid late payments, by paying bills automatically…";

hyperlink[5] = "onlinebanking.htm";
source[5] = "images/features/feature_f06.gif";
alternate[5] = "Smart Money Thought: Paying bills online is fast, free and easy…";

hyperlink[6] = "borrowing.htm";
source[6] = "images/features/feature_f07.gif";
alternate[6] = "Smart Money Thought: Avoid fees and delays, get your home loan from someone you know…";

hyperlink[7] = "cashmanage.htm";
source[7] = "images/features/feature_f08.gif";
alternate[7] = "Smart Money Thought: Save time, gain control with online cash management for your business…";

hyperlink[8] = "homeloan.htm";
source[8] = "images/features/feature_f09.gif";
alternate[8] = "Smart Money Thought: Save thousands with a 15 or 20 year home loan…";


sourcetext = "<a href=";
sourcetext += hyperlink[i];
sourcetext += "><img src=";
sourcetext += source[i];
sourcetext += " alt=";
sourcetext += alternate[i];
sourcetext += " width=130 height=150 border=0 /></a>";

return sourcetext;
}

//Developed by Zeis Group, Inc. : Chris Lightner for Carrollton Bank 2006
function arrayValues() {
// numOfVar is the number of variations of the art and text	

var values_numOfVar = 5;

var values_i = Math.floor(Math.random() * values_numOfVar);

var values_source = [];
var values_alternate = [];

values_source[0] = "images/values/values_f01.gif";
values_alternate[0] = "Less for the bank more for the customer";

values_source[1] = "images/values/values_f02.gif";
values_alternate[1] = "Always do the right thing";

values_source[2] = "images/values/values_f03.gif";
values_alternate[2] = "Do whatever it takes";

values_source[3] = "images/values/values_f04.gif";
values_alternate[3] = "A banks owners should be at the bank";

values_source[4] = "images/values/values_f05.gif";
values_alternate[4] = "Hire good people";

values_sourcetext = "<img src=";
values_sourcetext += values_source[values_i];
values_sourcetext += " alt=";
values_sourcetext += values_alternate[values_i];
values_sourcetext += " width=410 height=120 border=0 />";

return values_sourcetext;
}