// JavaScript Document
<!--
// Focal Image Randomizer
var imagenumber = 12 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

//focal point image generator
imagesA = new Array
alttagsA = new Array
linkitA = new Array

imagesB = new Array
alttagsB = new Array
linkitB = new Array

imagesA[1] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_01.jpg"
imagesA[2] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_02.jpg"
imagesA[3] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_03.jpg"
imagesA[4] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_04.jpg"
imagesA[5] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_05.jpg"
imagesA[6] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_06.jpg"
imagesA[7] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_07.jpg"
imagesA[8] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_08.jpg"
imagesA[9] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_09.jpg"
imagesA[10] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_10.jpg"
imagesA[11] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_11.jpg"
imagesA[12] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_12.jpg"

alttagsA[1] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[2] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[3] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[4] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[5] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[6] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[7] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[8] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[9] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[10] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[11] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsA[12] = "California Association of Licensed Security Agencies, Guards and Associates"

linkitA[1] = "/index.cfm"
linkitA[2] = "/index.cfm"
linkitA[3] = "/index.cfm"
linkitA[4] = "/index.cfm"
linkitA[5] = "/index.cfm"
linkitA[6] = "/index.cfm"
linkitA[7] = "/index.cfm"
linkitA[8] = "/index.cfm"
linkitA[9] = "/index.cfm"
linkitA[10] = "/index.cfm"
linkitA[11] = "/index.cfm"
linkitA[12] = "/index.cfm"

imagesB[1] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_01_int.jpg"
imagesB[2] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_02_int.jpg"
imagesB[3] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_03_int.jpg"
imagesB[4] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_04_int.jpg"
imagesB[5] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_05_int.jpg"
imagesB[6] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_06_int.jpg"
imagesB[7] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_07_int.jpg"
imagesB[8] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_08_int.jpg"
imagesB[9] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_09_int.jpg"
imagesB[10] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_10_int.jpg"
imagesB[11] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_11_int.jpg"
imagesB[12] = "http://www.calsaga.org/public/images/masthead/masthead_right_guard_12_int.jpg"

alttagsB[1] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[2] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[3] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[4] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[5] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[6] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[7] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[8] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[9] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[10] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[11] = "California Association of Licensed Security Agencies, Guards and Associates"
alttagsB[12] = "California Association of Licensed Security Agencies, Guards and Associates"

linkitB[1] = "/index.cfm"
linkitB[2] = "/index.cfm"
linkitB[3] = "/index.cfm"
linkitB[4] = "/index.cfm"
linkitB[5] = "/index.cfm"
linkitB[6] = "/index.cfm"
linkitB[7] = "/index.cfm"
linkitB[8] = "/index.cfm"
linkitB[9] = "/index.cfm"
linkitB[10] = "/index.cfm"
linkitB[11] = "/index.cfm"
linkitB[12] = "/index.cfm"

var image1 = imagesA[rand1]
var alttag1 = alttagsA[rand1]
var link1 = linkitA[rand1]

var image2 = imagesB[rand1]
var alttag2 = alttagsB[rand1]
var link2 = linkitB[rand1]

//-->
