// JavaScript Document
var dynimages=new Array()
dynimages[0]=["App_Themes/ThemeLaJollaDentistry/images/office1_b.jpg", ""]
dynimages[1]=["App_Themes/ThemeLaJollaDentistry/images/office2_b.jpg", ""]
dynimages[2]=["App_Themes/ThemeLaJollaDentistry/images/office3_b.jpg", ""]
dynimages[3]=["App_Themes/ThemeLaJollaDentistry/images/office4_b.jpg", ""]
dynimages[4]=["App_Themes/ThemeLaJollaDentistry/images/office5_b.jpg", ""]
dynimages[5]=["App_Themes/ThemeLaJollaDentistry/images/office6_b.jpg", ""]
dynimages[6]=["App_Themes/ThemeLaJollaDentistry/images/office7_b.jpg", ""]
dynimages[7]=["App_Themes/ThemeLaJollaDentistry/images/office8_b.jpg", ""]
dynimages[8]=["App_Themes/ThemeLaJollaDentistry/images/office9_b.jpg", ""]

var preloadimg="no"
var optlinktarget=""
var imgborderwidth=0
var filterstring="progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=1.0 Duration=0.7)"

if (preloadimg=="yes"){
for (x=0; x<dynimages.length; x++){
var myimage=new Image()
myimage.src=dynimages[x][0]
}
}

function returnimgcode(theimg){
var imghtml=""
if (theimg[1]!="")
imghtml='<a href="'+theimg[1]+'" target="'+optlinktarget+'">'
imghtml+='<img src="'+theimg[0]+'" border="'+imgborderwidth+'">'
if (theimg[1]!="")
imghtml+='</a>'
return imghtml
}

function modifyimage(loadarea, imgindex){
if (document.getElementById){
var imgobj=document.getElementById(loadarea)
if (imgobj.filters && window.createPopup){
imgobj.style.filter=filterstring
imgobj.filters[0].Apply()
}
imgobj.innerHTML=returnimgcode(dynimages[imgindex])
if (imgobj.filters && window.createPopup)
imgobj.filters[0].Play()
return false
}
}

