/////////////////////////////////////////////////////////////////////////////
//  The code contained within this JavaScript function definition file is  //
//                         copyright 2003-2004 by                          //
//                                Cognicom                                 //
//                               PO Box 6039                               //
//                       South Penrith DC  NSW  2750                       //
//                                Australia                                //
//                                                                         //
//                             www.cognicom.tk                             //
// telephone: (0417) 45-77-66                    facsimile: (02) 4727-1898 //
//                                                                         //
// No section of this code may be reproduced, in whole or in part, without //
//            the express written permission of The OnLine Tryst.          //
/////////////////////////////////////////////////////////////////////////////

<!--
	var sstimer = 0;
	var ssframe = 0;
	var iStyle = 0;
	var iStyleInc = 3;
	var img = new Array();

	function InitShow() {
		for (i = 0; i < aImages.length; i++) {
			img[i] = new Image();
			img[i].src = '_images/' + aImages[i];
		}
		sstimer = setTimeout('RunShow()', 100);
	}

	function RunShow() {
		clearTimeout(sstimer);
		if (document.all) {
			document.images.showpane.style.filter='RevealTrans(transition=' + iStyle + ',duration=3)';
			document.images.showpane.filters.RevealTrans.Apply();
			iStyle += iStyleInc
			iStyleInc ++
			if (iStyleInc > 10) {iStyleInc = 3}
			if (iStyle > 22) {iStyle -= 22}
		}
		document.images.showpane.src = img[ssframe].src;
		if (document.all) {
			document.images.showpane.filters.RevealTrans.Play();
		}
		sstimer = setTimeout('RunShow()', iTimes[ssframe] * 1000);
		ssframe++;
		if (ssframe >= aImages.length) {ssframe = 1}
	}
//-->
