﻿<!--

function rand_number(nn)
{
var x;
x=Math.round(Math.random()*100);
x%=nn;
return x;
}

var n;

function banner()
{
var img = new Array();

img[0]='<img src="/images/random1.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[1]='<img src="/images/random2.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[2]='<img src="/images/random3.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[3]='<img src="/images/random4.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[4]='<img src="/images/random5.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[5]='<img src="/images/random6.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[6]='<img src="/images/random7.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
img[7]='<img src="/images/random8.jpg" border=0 width=287 height=305 alt="Welcome to Cariboo Dental Clinic">';
n=rand_number(8);
document.write(img[n]);
}

-->
