// JavaScript Document Name "bs-custom.js"

function fncGraphicChangerByDate() {
		var	i;
		var	month;
		var	day;
		var	today;


		var	maxFile = 6;


		var	date = new Date();
		var	graphics_data = new Array(maxFile);
		var	graphics_path = new Array(maxFile);
		var	graphics_link = 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] = "0101";
		graphics_path[0] = "http://www.beauty-s.com/site_data/cabinet/img/huku09.jpg";
		graphics_link[0] = "http://www.beauty-s.com/category/2290.html";
		graphics_data[1] = "0301";
		graphics_path[1] = "";
		graphics_link[1] = "";
		graphics_data[2] = "0401";
		graphics_path[2] = "";
		graphics_link[2] = "";
		graphics_data[3] = "0501";
		graphics_path[3] = "";
		graphics_link[3] = "";
		graphics_data[4] = "1001";
		graphics_path[4] = "";
		graphics_link[4] = "";
		graphics_data[5] = "1201";
		graphics_path[5] = "http://www.beauty-s.com/site_data/cabinet/top/08.jpg";
		graphics_link[5] = "http://www.beauty-s.com/";


		for (i = 0; i < maxFile; i++) {
			if (graphics_data[i] > today) {
				if (i == 0) {
					i = maxFile;
				}
				break;
			}
		}
		i--;

		document.write("<a href=\"" + graphics_link[i] + "\">");
		document.write("<IMG SRC=\"" + graphics_path[i] + "\" border=0>");
		document.write("<\/a>");

	}
