
//Photo Album Functions:
function applyeffect(){
	if (document.all && photo_slideshow.filters && navigator.userAgent.indexOf("MSIE 6")!=-1){
		photo_slideshow.filters.item(0).enabled=true;
		photo_slideshow.filters.item(0).stop();
		photo_slideshow.filters.item(0).apply();
		document.images.photo_slideshow.src=photos[cursor];
		photo_slideshow.filters.item(0).play();
	}
	else {
		document.images.photo_slideshow.src=photos[cursor];
	}
	//window.status="Photo "+(cursor+1)+" of "+photos.length;
}

function next_photo(){
	if (cursor<photos.length-1) cursor++;
	else cursor=0;
	applyeffect();
	 play_album();
}
function transport(){
	if (photoslink[cursor]!=null && photoslink[cursor]!="") window.open(photoslink[cursor]);
}
function play_album() {
	timeOn = setTimeout("next_photo()",4000);
}
var cursor=0;
for (i=0;i<photos.length;i++){
	MM_preloadImages(photos[i]);
}
play_album();
