
	function fncGraphicChangerByDate() {
		var	i;
		var	month;
		var	day;
		var	today;
		//
		var	maxFile = 11;
		var	date = new Date();
		var	graphics_data = new Array(maxFile);
		var	graphics_path = new Array(maxFile);

		if ((month = (date.getMonth() + 1)) < 10) {
			month = "0" + month;
		}
		else {
			month += "";
		}

		if ((day = date.getDate()) < 10) {
			day = "0" + day;
		}
		else {
			day += "";
		}
		today = month + day;
		graphics_data[0] = "0107";
		graphics_path[0] = "./kisetu1.html";
		graphics_data[1] = "0115";
		graphics_path[1] = "./kisetu2.html";
		graphics_data[2] = "0214";
		graphics_path[2] = "./kisetu3.html";
		graphics_data[3] = "0228";
		graphics_path[3] = "./kisetu4.html";
		graphics_data[4] = "0321";
		graphics_path[4] = "./kisetu5.html";
		graphics_data[5] = "0401";
		graphics_path[5] = "./kisetu6.html";
		graphics_data[6] = "0410";
		graphics_path[6] = "./kisetu7.html";
		
		graphics_data[7] = "05016";
		graphics_path[7] = "./kisetuno.html";
		
		graphics_data[8] = "1020";
		graphics_path[8] = "./kisetu8.html";
		graphics_data[9] = "1101";
		graphics_path[9] = "./kisetu9.html";
		graphics_data[10] = "1220";
		graphics_path[10] = "./kisetu10.html";

		for (i = 0; i < maxFile; i++) {
			if (graphics_data[i] > today) {
				if (i == 0) {
					i = maxFile;
				}
				break;
			}
		}
		i--;

		document.write("<a href=\""+ graphics_path[i] +"\"><IMG SRC=\"kisetunoplanimg.jpg\" border=\"0\"> ");

	}
