// JavaScript Document

var wValA2 = 0;
var lValA2 = 0;
var stopThisA2 = 0;


	
function checkActiveA2() {
	FillAutoA2(); 
	}

function FillAutoA2() {	

	initPicturesA2();
	runSlideShowA2(1);
	}
	

	
/* download slideshow */

var SlideShowSpeedA2 = 8888;
var CrossFadeDurationA2 = .15;
var PictureA2 = new Array();  


var tssA2;
var issA2;
var jssA2 = 1;
var pssA2 = 1;
var preLoadnA2 = new Array();

function initPicturesA2() {
	
	//Picture2[1]  = 'images/aahfn_request_speaker.jpg';
	PictureA2[1]  = 'sample/meeting_old_friends.jpg';
	PictureA2[2]  = 'sample/general.jpg';
	PictureA2[3]  = 'sample/happy.jpg';


	
	
	//Picture2[3]  = 'images/newbanner2.jpg';
	//Picture2[3]  = 'images/aahfn_heart_banner.jpg';
				//aahfn_memcamp07.gif
	
	pssA2 = PictureA2.length-1;
		
	for (issA2 = 1; issA2 < pssA2+1; issA2++){
	preLoadnA2[issA2] = new Image();
	preLoadnA2[issA2].src = PictureA2[issA2];}
	}	
	
function runSlideShowA2(active) {
	if (stopThisA2 == 1 ) {
		document.images.PictureA2.src = preLoadnA2[1].src;
		//document.images.PictureBox.style.display = "none";
		return;
		}
	else {
		if (document.all) {
			document.images.PictureA2.style.filter="blendTrans(duration=CrossFadeDuration2)";
			document.images.PictureA2.filters.blendTrans.Apply();
			}
		document.images.PictureA2.src = preLoadnA2[jssA2].src;
		if (document.all) document.images.PictureA2.filters.blendTrans.Play();
		jssA2++;
		if (jssA2 > (pssA2)) jssA2=1;
		tssA2 = setTimeout('runSlideShowA2(1)', SlideShowSpeedA2);	
		}
	}	




