// JavaScript Document
function whenMouseMove(win_this)
{
	win_this.style.background = "#74481B";
}

function whenMouseOut(win_this)
{
	win_this.style.background = "#442911";
}
