
<!--

var photos2=new Array();
var photoslink2=new Array();
var which2=0;
var dir2="http://www.realartways.org/CreativeCocktailHour/archive/pozaOpening_2006_10/";
var numPhotos2=30;


//***********************************************************************
for(i=0;i<=numPhotos2;i++){
	photos2[i]=dir2+i+".jpg";
}

function applyeffect2(){
	if(document.all){
		photoslider2.filters.revealTrans.Transition=Math.floor(Math.random()*23);
		photoslider2.filters.revealTrans.stop();
		photoslider2.filters.revealTrans.apply();
	}
}

function playeffect2(){
	if(document.all) photoslider2.filters.revealTrans.play();
}

function keeptrack2(){
	window.status="Image "+(which2+1)+" of "+photos2.length;
}

function backward2(){
	if(which2>0){
		which2--;
		applyeffect2();
		document.images.photoslider2.src=photos2[which2];
		playeffect2();
		keeptrack2();
	}
}

function pickphoto2(photonum2){
	which2=photonum2;
	applyeffect2();
	document.images.photoslider2.src=photos2[which2];
	playeffect2();
	keeptrack2();
}

function forward2(){
	if(which2 < numPhotos2){
		which2++;
	}
	else {
		which2=0;		
	}

	applyeffect2();
	document.images.photoslider2.src=photos2[which2];
	playeffect2();
	keeptrack2();

}












//-->
