<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================
//
// Rotation Script file for Family Matters Website
//
// Set up the Arrays to be used.

var theImages = new Array()
var theAlts = new Array()
var theQuotes = new Array()

// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = '/dr/assets/banners/1.jpg'
theImages[1] = '/dr/assets/banners/2.jpg'
theImages[2] = '/dr/assets/banners/3.jpg'
theImages[3] = '/dr/assets/banners/4.jpg'
theImages[4] = '/dr/assets/banners/5.jpg'
theImages[5] = '/dr/assets/banners/6.jpg'
theImages[6] = '/dr/assets/banners/7.jpg'
theImages[7] = '/dr/assets/banners/8.jpg'
theImages[8] = '/dr/assets/banners/9.jpg'
theImages[9] = '/dr/assets/banners/10.jpg'
theImages[10] = '/dr/assets/banners/11.jpg'
theImages[11] = '/dr/assets/banners/12.jpg'
theImages[12] = '/dr/assets/banners/13.jpg'
theImages[13] = '/dr/assets/banners/14.jpg'
theImages[14] = '/dr/assets/banners/15.jpg'
theImages[15] = '/dr/assets/banners/16.jpg'
theImages[16] = '/dr/assets/banners/17.jpg'
theImages[17] = '/dr/assets/banners/18.jpg'
theImages[18] = '/dr/assets/banners/19.jpg'
theImages[19] = '/dr/assets/banners/20.jpg'
theAlts[0] = 'Aspen Trees'
theAlts[1] = 'Aspen Trees'
theAlts[2] = 'Flowered Cactus'
theAlts[3] = 'Blooming Cactus'
theAlts[4] = 'Cactus'
theAlts[5] = 'Test Takers'
theAlts[6] = 'Blind student using JAWS screen reader software to take an exam'
theAlts[7] = 'Disability Resources Bus'
theAlts[8] = 'Test Takers'
theAlts[9] = 'DR Building'
theAlts[10] = 'San Francisco Peaks'
theAlts[11] = 'San Francisco Peaks'
theAlts[12] = 'Pine Needles'
theAlts[13] = 'Beautiful NAU Sky'
theAlts[14] = 'Blind student interacting with instructor in jewelry class'
theAlts[15] = 'Blooming Cactus'
theAlts[16] = 'Got Balance Banner'
theAlts[17] = 'Got Balance Banner'
theAlts[18] = 'Got Balance Banner'
theAlts[19] = 'Got Balance Banner'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" alt="'+theAlts[whichImage]+'">');
}


//-->
//  Code for Changing Campus Health DID YOU KNOW Quotations //
//
theQuotes[0] = '(Counseling) has saved my life and raised my quality of life.'
theQuotes[1] = 'I would not be successful in school without (counseling).  It keeps me on track emotionally.'
theQuotes[2] = '(Counseling) has been a good starting point for removing drugs and alcohol from my life.'
theQuotes[3] = 'Wonderful desk staff and the reminder phone calls were extremely friendly.'
theQuotes[4] = 'Essentially, counseling has helped keep me sane.'
theQuotes[5] = 'Counseling has allowed me to refine my plans for college and strengthen my ability to have positive self-talk and make strong relationships with others.'
theQuotes[6] = 'Counseling has provided the support I needed to balance my family responsibilities with those related to completing my graduate degree.'
theQuotes[7] = '(Counseling) has given me a safe place to talk out my pain.'
theQuotes[8] = 'It is great to talk with someone who actually listens and cares.'
theQuotes[9] = 'I feel 200% better than 6 weeks ago!'
theQuotes[10] = 'The front desk staff is wonderful and is very professional.'
theQuotes[11] = '(Counseling) has kept me going when otherwise I would have been depressed and unable to get up and go to school.'
theQuotes[12] = 'Because of her (the counselor), I have been able to become an advocate for myself, deal with family issues, and come to respect myself for who I am.'
theQuotes[13] = 'He (my counselor) has been one of the most influential people in college for me.'
theQuotes[14] = 'I am glad I had the opportunity to work with him (my counselor).  He helped me greatly.'
theQuotes[15] = 'She (my counselor) made grad school a manageable experience for me.'
theQuotes[16] = 'All of my (counseling) meetings with her have been invaluable to me.'
theQuotes[17] = 'She (my counselor) is awesome - a great person who lightens things up!'
theQuotes[18] = 'I appreciate (my counselor&rsquo;s) calm, concerning manner.&nbsp;&nbsp;Very helpful.'
theQuotes[19] = 'When I graduate, it will be based on (my counselor&rsquo;s) support.'
theQuotes[20] = 'He&rsquo;s (my counselor) great!'
theQuotes[21] = 'It’s very convenient if you don’t have a doctor in Flagstaff.'
theQuotes[22] = '(Counseling) helps me talk to people in my life.'


// ======================================
// do not change anything below this line
// ======================================

var q = theQuotes.length;

var whichQuote = Math.round(Math.random()*(q-1));
function showQuote(){
document.write('<p>"'+theQuotes[whichQuote]+'"</p>');
}
//-->