function on_row_over( el )
{
	if(!el)
		return;
	el.style.backgroundColor = '#eeeeee';
}

function on_row_out( el )
{
	if(!el)
		return;
	el.style.backgroundColor = '#ffffff';
}

function on_pf_over( el )
{
	if( !el )
		return;
	el.style.background = 'url( \'images/pf_back_sel.gif\' ) repeat-y';
}

function on_pf_out( el )
{
	if( !el )
		return;
	el.style.background = 'transparent';
}