// JavaScript Document
function init() 
{
	P7_initPM(1,0,1,20,10);
}

function over(row)
{
	row.oldBackgroundColor = row.style.backgroundColor;
	row.style.backgroundColor = 'gray';
}

function out(row)
{
	row.style.backgroundColor = row.oldBackgroundColor;
}