// JavaScript Document

// this functions initialize the rollover for closeups on images that only have one close area  - other images may use usemaps -- the setupSNRollver routine is inside the document itself because it is so variable -- this is only for the originals where the rollover is initiated by mousing on the image... it is not necessary to include this on the 'closeup' pages which zoom back out via a text link because that uses a generic routine in the blazing-heart file


	function snInit() {
		for (var i=0; i<document.images.length; i++) {
			if (document.images[i].id =="sn") {
				setupSNRollover(document.images[i]);
			}
		}
	}
	
	function rollOver() {
		this.src = this.overImage.src;
	}
	function rollOut ()  {
		this.src = this.outImage.src;
	}


