function photofader1(nm1, mainDiv, imgArr1){
	this.name1		= nm1;
	this.imgArr1 = imgArr1;
	this.curImg1 = 0;
	this.curDiv1 = 1;
	
	var mainDv1 = document.getElementById(mainDiv);
	
	document.pfObj = this;
	
	document.write("<style type='text/css'>\n");
	document.write("#pf1_photo1 img { visibility:hidden; }\n");
	document.write("#pf1_photo1 { position:absolute; z-index: 1; }\n");
	document.write("#pf1_photo2 { position:absolute; z-index: 0; }\n");
	document.write("</style>");
	
	this.initImages = function() {
		document.write("<scr");
		document.write("ipt type='text/javascript'>\n");
		for(var i=0; i<this.imgArr1.length; i++){
			document.write("var img"+i+" = new Image();\n");
			document.write("img"+i+".src = '"+ this.imgArr1[i] +"';\n");
		}
		document.write("document.pfObj.start();\n");
		document.write("</scr");
		document.write("ipt>\n");
		
	}
	
	this.start = function(){
		var hldr1 = "pf1_photo1";
		var hldr2 = "pf1_photo2";
		
		var dv1 = document.createElement("div");
				dv1.id = "pf1_photo1";
				dv1.innerHTML = "<img src='"+ imgArr1[0] +"' />";
		var dv2 = document.createElement("div");
				dv2.id = "pf1_photo2";
		
		mainDv1.appendChild(dv1);
		mainDv1.appendChild(dv2);
		
	  image1 = document.getElementById(hldr1).childNodes[0];
		
	  setOpacity1(image1, 0);
	  image1.style.visibility = 'visible';
	  fadeIn1(hldr1,0);
	}
	
	this.initImages();
}
	
function setOpacity1(obj, opacity) {
  opacity = (opacity == 100)?99.999:opacity;
  
  // IE/Win
  obj.style.filter = "alpha(opacity:"+opacity+")";
  
  // Safari<1.2, Konqueror
  obj.style.KHTMLOpacity = opacity/100;
  
  // Older Mozilla and Firefox
  obj.style.MozOpacity = opacity/100;
  
  // Safari 1.2, newer Firefox and Mozilla, CSS3
  obj.style.opacity = opacity/100;
}

function fadeIn1(objId,opacity) {
  if (document.getElementById) {
    obj = document.getElementById(objId).childNodes[0];
    if (opacity < 100) {
			speed1 = (speed1 < 2)?2:speed1;
      setOpacity1(obj, opacity);
			opacityDif = Math.ceil((100-opacity)/speed1);
			opacity += opacityDif;
      //opacity += 2;
      window.setTimeout("fadeIn1('"+objId+"',"+opacity+")", 100);
    }
		else
			setTimeout("swapImages1()",delay1*1000);
  }
}

function swapImages1(){
	// find out which 
	if(document.pfObj.curImg1 == document.pfObj.imgArr1.length-1)
		document.pfObj.curImg1 = 0;
	else 
		++document.pfObj.curImg1;

	// now get the div to hld the new image
	var dvName	= (document.pfObj.curDiv1 == 1)?"pf1_photo2":"pf1_photo1";
	var eDivName		= (document.pfObj.curDiv1 == 1)?"pf1_photo1":"pf1_photo2";
	document.pfObj.curDiv1 = (document.pfObj.curDiv1 == 1)?2:1;
	
	var tgtDiv = document.getElementById(dvName);
	var eDiv = document.getElementById(eDivName);
	
	// now fill the target div
	tgtDiv.innerHTML = "<img src='"+ document.pfObj.imgArr1[document.pfObj.curImg1] +"' style='visibility:hidden;' />";
	
	//move the divs around in z-index
	eDiv.style.zIndex = 0;
	tgtDiv.style.zIndex = 1;
	
	// And finally fade in the image
	
  var img = tgtDiv.childNodes[0];
	
  setOpacity1(img, 0);
  img.style.visibility = 'visible';
  fadeIn1(tgtDiv.id,0);
}