<!-- 
				img1w = "73";
		img1h = "61";
		img1s = "img/psa_1.jpg";
				img2w = "73";
		img2h = "73";
		img2s = "img/psa.jpg";//red
				img3w = "73";
		img3h = "73";
		img3s = "img/ukey_yellow.gif";//yellow
				img4w = "84";
		img4h = "105";
		img4s = "img/ukey_suite.jpg";//suite
		var maxLoops = 4;
		var bInterval = 1;
		var count = 2;

		function init() {
			catalog_mi.filters.blendTrans.apply();
			document.images.catalog_mi.width = eval("img"+count+"w");
			document.images.catalog_mi.height = eval("img"+count+"h");
			document.images.catalog_mi.src = eval("img"+count+"s");

			catalog_mi.filters.blendTrans.play();
			if (count < maxLoops) {
				count++;
			}
			else {
				count = 1;
			}
			setTimeout("init()", bInterval*1000+3000);
		}
//-->