function SetBoxText($show) {
	now = new Date();
	now.setTime(now.getTime()+1000*60*60*24*365);
	expire = (now.toGMTString());
	document.cookie = "fusion_intro="+escape($show)+"; expires="+expire;

	var X = document.getElementById("box_text");
	var Y = document.getElementById("layer_" + $show);

	X.innerHTML = Y.innerHTML;

	$hide = "welcome";
	if ($show == "welcome") $hide = "demo";
	with (document.getElementById("button_" + $hide).style) {
	  backgroundColor = "#7BCCC7";
	  color = "black";
	}
	$hide = "demo";
	if ($show == "demo")  $hide = "forum";
	with (document.getElementById("button_" + $hide).style) {
	  backgroundColor = "#C0CC7B";
	  color = "black";
	}
	$hide = "forum";
	if ($show == "forum") $hide = "friss";
	with (document.getElementById("button_" + $hide).style) {
	  backgroundColor = "#B7CC7B";
	  color = "black";
	}
	$hide = "friss";
	if ($show == "friss") $hide = "newuser";
	with (document.getElementById("button_" + $hide).style) {
	  backgroundColor = "#DFDAAF";
	  color = "black";
	}
	$hide = "newuser";
	if ($show == "newuser") $hide = "newuser";
	with (document.getElementById("button_" + $hide).style) {
	  backgroundColor = "#A77BCC";
	  color = "black";
	}
	with (document.getElementById("button_" + $show).style) {
	  backgroundColor = "#EFEFEF";
	  color = "black";	  
	}

	return true;
}

