
			
				dd = new Date();
				yy = dd.getYear();
				mm = dd.getMonth() + 1;
				dd = dd.getDate();
				if (yy < 2000) { yy += 1900; }
				if (mm < 10) { mm = "0" + mm; }
				if (dd < 10) { dd = "0" + dd; }
//				$('#topbanner').each(function () {
//					$(this).attr("src",dd + yy);
//				});

//				var anchor = document.getElementById("topbanner");
//				$('body.index #sideber').each(function () {
//					anchor.src = "../banner_jp/" + yy + mm + "/top.jpg";
//				});
//				$('body.index.en #sideber').each(function () {
//					anchor.src = "banner_en/" + yy + mm + "/top.jpg";
//				});
			var jpfilepass = "../banner_jp/" + yy + mm + "/top.jpg";
			var enfilepass = "../banner_en/" + yy + mm + "/top.jpg";
			$.ajaxSetup({
				cache: false
			});
			$('body.index.en').ready(function (){
				$('#sideber #bunner1').load("/banner_en/" + yy + mm + "/index.html p",function()	{$(this).find("img").attr('src',enfilepass)
//				console.log("test")
				});
			});
