//ABOUT DATE///////////////////
function setMonth() {
	var now = new Date();
	//document.write("monthNumber_" + (now.getMonth()+1))
	setImage("flower", "monthImg", now.getMonth(), 0);
}
//LOAD IMAGES///////////////////
var monthImg = new Array();
for(i = 0; i < 12; i++) monthImg[i] = new Image();
monthImg[0].src = base + "shared/img/m/1.jpg";
monthImg[1].src = base + "shared/img/m/2.jpg";
monthImg[2].src = base + "shared/img/m/3.jpg";
monthImg[3].src = base + "shared/img/m/4.jpg";
monthImg[4].src = base + "shared/img/m/5.jpg";
monthImg[5].src = base + "shared/img/m/6.jpg";
monthImg[6].src = base + "shared/img/m/7.jpg";
monthImg[7].src = base + "shared/img/m/8.jpg";
monthImg[8].src = base + "shared/img/m/9.jpg";
monthImg[9].src = base + "shared/img/m/10.jpg";
monthImg[10].src = base + "shared/img/m/11.jpg";
monthImg[11].src = base + "shared/img/m/12.jpg";
