// Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)

      if (document.images) {
            img01on = new Image();          
            img01on.src = "gallery/archives/SFACCbabygirls_tn.jpg";
            img02on = new Image();          
            img02on.src = "gallery/archives/rosencrantz01_tn.jpg";
            img03on = new Image();          
            img03on.src = "gallery/archives/malachi_candle_left_tn.jpg";// Active Images (rollover)
	  
	    
	    img01off = new Image();          
            img01off.src = "gallery/archives/SFACCbabygirls_tnb.jpg";
            img02off = new Image();          
            img02off.src = "gallery/archives/rosencrantz01_tnb.jpg";
            img03off = new Image();          
            img03off.src = "gallery/archives/malachi_candle_left_tnb.jpg";// INactive Images
		
		
	    img01ad = new Image();         
            img01ad.src = "gallery/archives/SFACCbabygirls.jpg";
            img02ad = new Image();         
            img02ad.src = "gallery/archives/rosencrantz01.jpg";
            img03ad = new Image();         
            img03ad.src = "gallery/archives/malachi_candle_left.jpg";// Secondary popup Images
        }

// Function to 'activate' images.
     function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
            document["photo"].src = eval(imgName + "ad.src");
        }
}

// Function to 'deactivate' images.
     function imgOff(imgName) {
	if (document.images) {
	    document[imgName].src = eval(imgName + "off.src");
	    document["photo"].src = "images/malachi_candle_left.jpg"; // Initially loaded Secondary popup Image
	}
}
//