function changeImage(boolean)
{
	image="image/top/message.gif";
	image_red="image/top/message_red.gif";
	image_text="image/top/message_text.gif";
	
	if(boolean=="on"){
		document.getElementById("message").style.backgroundImage='url('+image_red+')';
		document.getElementById("message-text").style.backgroundImage='url('+image_text+')';
	}

	if(boolean=="off"){
		document.getElementById("message").style.backgroundImage='url('+image+')';
		document.getElementById("message-text").style.backgroundImage="";
	}
}


function jump(){
	location.href="index.html";
}


function jump2(){
	location.href="../index.html";
}

