﻿
					var jx1 = document.getElementById("jx1");
					var jx2 = document.getElementById("jx2");
					var sL = 1;
					var iS = 0;
					function p() {
					if (iS == 0) {
						if (sL % 2 == 1) {
							cs1(jx1, 1);
							cs1(jx2, 0);
							setTimeout('p()', 4000);
						} else {
							cs1(jx1, 0);
							cs1(jx2, 1);
							setTimeout('p()', 4000);
						}
							sL++;
					} else {
						setTimeout('p()', 1000);
					}
					
					}
					function cs1(a, b) {
					if (a == null) return;
					a.filters.revealTrans.apply();
					if (b == 1) a.style.visibility = "visible";
					else a.style.visibility = "hidden";
					a.filters.revealTrans.play();
					}
					function s(v) {
					iS = v;
					}
					p();
