// 覧覧覧覧覧覧覧 DATE YEAR

today = new Date()
DateYear = today.getYear()
Brsr=navigator.appName
if (Brsr=="Netscape") { if (DateYear < 99) { DateYear = DateYear + 2000 } else { DateYear = DateYear + 1900 } }
function Year() { document.write(DateYear) }



// 覧覧覧覧覧覧覧 CACHE IMAGES ARRAY

function LoadImg() {
	image = new Array(); for (a=1; a<42; a++) { image[a] = new Image() }
	ImgF = new Array("","programs.anim.gif","programs.stat.gif",
		"kmcc.coach.anim.gif","kmcc.coach.stat.gif",
		"become.coach.anim.gif","become.coach.stat.gif",
		"products.anim.gif","products.stat.gif",
		"inspiration.anim.gif","inspiration.stat.gif",
		"newsletter.anim.gif","newsletter.stat.gif",
		"founder.anim.gif","founder.stat.gif",
		"home.anim.gif","home.stat.gif",
		"about.anim.gif","about.stat.gif",
		"contact.anim.gif","contact.stat.gif",
		"flower.1.a.gif","flower.1.b.gif",
		"flower.2.a.gif","flower.2.b.gif",
		"flower.3.a.gif","flower.3.b.gif",
		"flower.4.a.gif","flower.4.b.gif",
		"flower.5.a.gif","flower.5.b.gif",
		"flower.6.a.gif","flower.6.b.gif",
		"flower.7.a.gif","flower.7.b.gif",
		"flower.8.a.gif","flower.8.b.gif",
		"flower.9.a.gif","flower.9.b.gif",
		"flower.10.a.gif","flower.10.b.gif",
		"cap.sign.anim.gif")

	for (a=1; a<42; a++) { image[a].src = "/images/design/" + ImgF[a] }

	document.Button21.src = image[41].src
}



// 覧覧覧覧覧覧覧 MESSAGES / COLORS ARRAY

FlwrMsg = new Array("","What small question<br />can you ask in this moment<br />about your creative passion?",
	"How would it feel to be on<br />your own side for a change?",
	"Self-kindness fuels creativity&#133;<br />got kindness?",
	"How can you make your creative passion<br />easier to get to?",
	"If your creative passion could talk to you,<br />what would it ask you to do?",
	"Are you avoiding<br />your creative work right now?",
	"Inhale, exhale.<br />Get inspired and then express.",
	"Don't sit on the side-lines,<br />embrace courage and begin.",
	"Begin with tiny steps or even&#133;<br />tiny thoughts.",
	"Did you get spaghetti sauce<br />on your shirt&#133; again?")

FMBkgrnCol = new Array("","#fff200","#ffbe00","#0c0","#ed1c24","#ffbe00",
	"#fff200","#0071bc","#808284","#f00","#8ed8f8")

FMTxtCol = new Array("","#000","#000","#000","#fff","#000",
	"#000","#fff","#fff","#fff","#000")



// 覧覧覧覧覧覧覧 DISPLAY MESSAGES

function GenFlowerMsg(MsgNo) {
	if (MsgNo == 1) { document.Button11.src = image[22].src }
	if (MsgNo == 2) { document.Button12.src = image[24].src }
	if (MsgNo == 3) { document.Button13.src = image[26].src }
	if (MsgNo == 4) { document.Button14.src = image[28].src }
	if (MsgNo == 5) { document.Button15.src = image[30].src }
	if (MsgNo == 6) { document.Button16.src = image[32].src }
	if (MsgNo == 7) { document.Button17.src = image[34].src }
	if (MsgNo == 8) { document.Button18.src = image[36].src }
	if (MsgNo == 9) { document.Button19.src = image[38].src }
	if (MsgNo == 10) { document.Button20.src = image[40].src }

	Box = document.getElementById("FlowerMsg"); Box.style.visibility = "visible"
	Box = document.getElementById("FlowerMsg2"); Box.style.backgroundColor = FMBkgrnCol[MsgNo]
	Box.style.color = FMTxtCol[MsgNo]; Box.innerHTML = FlwrMsg[MsgNo]
}



// 覧覧覧覧覧覧覧 REMOVE MESSAGES

function RemoveFMsg(MsgNo) {
	if (MsgNo == 1) { document.Button11.src = image[21].src }
	if (MsgNo == 2) { document.Button12.src = image[23].src }
	if (MsgNo == 3) { document.Button13.src = image[25].src }
	if (MsgNo == 4) { document.Button14.src = image[27].src }
	if (MsgNo == 5) { document.Button15.src = image[29].src }
	if (MsgNo == 6) { document.Button16.src = image[31].src }
	if (MsgNo == 7) { document.Button17.src = image[33].src }
	if (MsgNo == 8) { document.Button18.src = image[35].src }
	if (MsgNo == 9) { document.Button19.src = image[37].src }
	if (MsgNo == 10) { document.Button20.src = image[39].src }

	Box = document.getElementById("FlowerMsg"); Box.style.visibility = "hidden"
}



