<!-- 
browsok = true;

if(browsok) {
	// MouseOn   
	Night_Train1 = new Image();
	Night_Train1.src = "content/Night_Train_tbn_r.jpg";
	My_Panic1 = new Image();
	My_Panic1.src = "content/My_Panic_tbn_r.jpg";
	Chair1 = new Image();
	Chair1.src = "content/Chair_tbn_r.jpg";
	Uninvited1 = new Image();
	Uninvited1.src = "content/Uninvited_tbn_r.jpg";
	Tornado1 = new Image();
	Tornado1.src = "content/Tornado_tbn_r.jpg";
	Things_Found1 = new Image();
	Things_Found1.src = "content/Things_Found_tbn_r.jpg";

	SoundsMusic1 = new Image();
	SoundsMusic1.src = "content/SoundsMusic_tbn_r.jpg";
	StupidChar1 = new Image();
	StupidChar1.src = "content/Stupid_Character_tbn_r.jpg";
	Wrong1 = new Image();
	Wrong1.src = "content/Wrongside_tbn_r.jpg";


	// MouseOff
	Night_Train0 = new Image();
	Night_Train0.src = "content/Night_Train_tbn.jpg";
	My_Panic0 = new Image();
	My_Panic0.src = "content/My_Panic_tbn.jpg";
	Chair0 = new Image();
	Chair0.src = "content/Chair_tbn.jpg";
	Uninvited0 = new Image();
	Uninvited0.src = "content/Uninvited_tbn.jpg";
	Tornado0 = new Image();
	Tornado0.src = "content/Tornado_tbn.jpg";
	Things_Found0 = new Image();
	Things_Found0.src = "content/Things_Found_tbn.jpg";

	SoundsMusic0 = new Image();
	SoundsMusic0.src = "content/SoundsMusic_tbn.jpg";
	StupidChar0 = new Image();
	StupidChar0.src = "content/Stupid_Character_tbn.jpg";
	Wrong0 = new Image();
	Wrong0.src = "content/Wrongside_tbn.jpg";

}

function mouseon(n) {
	if(browsok){
		imageON = eval(n + "1.src");
		document [n].src = imageON;
	}
}

function mouseoff(n) {
	if(browsok){
		imageOFF = eval(n + "0.src");
		document [n].src = imageOFF;
	}
}


// -->