// ----------------------------------
// Author  : 
// Company :  Sancha Design Jewelry (www.chiactivate.com)
// Functie : CheckForm()
// Datum   : Aug 2007
// ----------------------------------


var dynimages=new Array()
dynimages[0]=["images/fashionshow1.jpg"]
dynimages[1]=["images/fashionshow2.jpg"]
dynimages[2]=["images/fashionshow3.jpg"]
dynimages[3]=["images/fashionshow4.jpg"]
dynimages[4]=["images/fashionshow5.jpg"]
dynimages[5]=["images/fashionshow6.jpg"]
dynimages[6]=["images/fashionshow7.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
}
}

