// JavaScript Document

var wVal3 = 0;
var lVal3 = 0;
var stopThis3 = 0;


	
function checkActiveX3() {
	
	FillAuto3(); 
	}

function FillAuto3() {
	initPictures3();
	runSlideShow3(1);
	}
	

	
/* download slideshow */

var SlideShowSpeed3 = 8888;
var CrossFadeDuration3 = .15;
var Picture3 = new Array();  


var tss3;
var iss3;
var jss3 = 1;
var pss3 = 1;
var preLoadn3 = new Array();

function initPictures3() {
	
	//Picture2[1]  = 'images/aahfn_request_speaker.jpg';
	Picture3[1]  = 'sample/intrigued.jpg';
	Picture3[2]  = 'sample/Taking_notes.jpg';
	//Picture2[3]  = 'images/newbanner2.jpg';
	//Picture2[3]  = 'images/aahfn_heart_banner.jpg';
				//aahfn_memcamp07.gif
	
	pss3 = Picture3.length-1;
		
	for (iss3 = 1; iss3 < pss3+1; iss3++){
	preLoadn3[iss3] = new Image();
	preLoadn3[iss3].src = Picture3[iss3];}
	}	
	
function runSlideShow3(active) {
	if (stopThis3 == 1 ) {
		document.images.PictureBox3.src = preLoadn3[1].src;
		//document.images.PictureBox.style.display = "none";
		return;
		}
	else {
		if (document.all) {
			document.images.PictureBox3.style.filter="blendTrans(duration=CrossFadeDuration2)";
			document.images.PictureBox3.filters.blendTrans.Apply();
			}
		document.images.PictureBox3.src = preLoadn3[jss3].src;
		if (document.all) document.images.PictureBox3.filters.blendTrans.Play();
		jss3++;
		if (jss3 > (pss3)) jss3=1;
		tss3 = setTimeout('runSlideShow3(1)', SlideShowSpeed3);	
		}
	}	




