﻿// JScript File

function random_imglink(){
var myimages=new Array()
myimages[1]="App_Themes/ThemeLaJollaDentistry/images/header_img1.jpg"
myimages[2]="App_Themes/ThemeLaJollaDentistry/images/header_img2.jpg"
myimages[3]="App_Themes/ThemeLaJollaDentistry/images/header_img3.jpg"
myimages[4]="App_Themes/ThemeLaJollaDentistry/images/header_img4.jpg"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0>')
}
random_imglink()

