
// Global Variable
var KickstartTxtIS = new Array()
var TitleIS = "<strong>Savings Kickstarts</strong>"
var TiptitleIS;
var KickTitleIS;
var NumberCountIS = 0;
// Text Slide Show Array Start
// Place Text Here 
KickstartTxtIS[1] = "Set a target date for your savings goal. Having a deadline can help you decide how much to put away, how often.";
KickstartTxtIS[2] = "Visualize your savings goal. Is it a vacation? A big screen TV? Keep a photo of your dream where you'll see it.";
KickstartTxtIS[0] = "Keep a separate account dedicated to savings. That way your savings won't get mixed in with your day-to-day cash.";
KickstartTxtIS[3] = "Pay yourself first. Make your savings plan part of your bill paying routine, just like cable, utilities and mortgage payments.";
KickstartTxtIS[4] = "Set up &ldquo;memorized&rdquo; online transfers using RBC Save-matic&trade; to put automated payments into your savings account.";
KickstartTxtIS[5] = "Make a list of all your expenditures over three months to see where there are opportunities to turn spending into saving.";
KickstartTxtIS[6] = "Count to 30 before impulse buying in a store. Or wait 24 hours before making that online shopping decision!";
KickstartTxtIS[7] = "Patience is a virtue. Don't expect to save hundreds overnight. Slow and steady wins this race.";
// Text Slide Show Array Ends
function loadkickstart(){
document.getElementById("count_number").innerHTML = 1;
document.getElementById("count_number_max").innerHTML = KickstartTxtIS.length;
document.getElementById("text_rightnav").innerHTML = KickstartTxtIS[0];
document.getElementById("title_rightnav").innerHTML = TitleIS;
}
// Next Image and Text Start
function NextIS() {
	TipTitleIS = document.getElementById("text_rightnav");
	KickTitleIS = document.getElementById("title_rightnav");
	
	if (NumberCountIS+1 < KickstartTxtIS.length) NumberCountIS++;
	else NumberCountIS=0;
	
	TipTitleIS.innerHTML = KickstartTxtIS[NumberCountIS];
	document.getElementById("count_number").innerHTML = NumberCountIS + 1;
}	
// Next Image and Text End
// Previous Image and Text Start
function PreviousIS() {
	TipTitleIS = document.getElementById("text_rightnav");
	KickTitleIS = document.getElementById("title_rightnav");
	
	if (NumberCountIS == 0) NumberCountIS = KickstartTxtIS.length-1;
	else NumberCountIS = NumberCountIS-1;
	
	TipTitleIS.innerHTML = KickstartTxtIS[NumberCountIS];
	document.getElementById("count_number").innerHTML = NumberCountIS + 1;
}
// Previous Image and Text End
