// JavaScript Document

var wValA3 = 0;
var lValA3 = 0;
var stopThisA3 = 0;


	
function checkActiveA3() {
	FillAutoA3(); 
	}

function FillAutoA3() {	

	initPicturesA3();
	runSlideShowA3(1);
	}
	

	
/* download slideshow */

var SlideShowSpeedA3 = 8888;
var CrossFadeDurationA3 = .15;
var PictureA3 = new Array();  


var tssA3;
var issA3;
var jssA3 = 1;
var pssA3 = 1;
var preLoadnA3 = new Array();

function initPicturesA3() {
	
	//Picture2[1]  = 'images/aahfn_request_speaker.jpg';
	PictureA3[1]  = 'sample/crowded_hall.jpg';
	PictureA3[2]  = 'sample/attendee.jpg';
	PictureA3[3]  = 'sample/Sim.jpg';


	
	
	//Picture2[3]  = 'images/newbanner2.jpg';
	//Picture2[3]  = 'images/aahfn_heart_banner.jpg';
				//aahfn_memcamp07.gif
	
	pssA3 = PictureA3.length-1;
		
	for (issA3 = 1; issA3 < pssA3+1; issA3++){
	preLoadnA3[issA3] = new Image();
	preLoadnA3[issA3].src = PictureA3[issA3];}
	}	
	
function runSlideShowA3(active) {
	if (stopThisA3 == 1 ) {
		document.images.PictureA3.src = preLoadnA3[1].src;
		//document.images.PictureBox.style.display = "none";
		return;
		}
	else {
		if (document.all) {
			document.images.PictureA3.style.filter="blendTrans(duration=CrossFadeDuration2)";
			document.images.PictureA3.filters.blendTrans.Apply();
			}
		document.images.PictureA3.src = preLoadnA3[jssA3].src;
		if (document.all) document.images.PictureA3.filters.blendTrans.Play();
		jssA3++;
		if (jssA3 > (pssA3)) jssA3=1;
		tssA3 = setTimeout('runSlideShowA3(1)', SlideShowSpeedA3);	
		}
	}	




