/* ==================================== button highlights =====================================================*/

/**
 * functies die een button oplichten als er met de muis overheen wordt gegaan
 */
function buttonOver( button )
{
	button.src = 'images/'+button.id+'2.gif';
}
function buttonOut( button )
{
	button.src = 'images/'+button.id+'1.gif';
}

/**
 * functies die een rij oplichten als er met de muis overheen wordt gegaan
 */
function rowOver( row )
{
	row.style.background = '#E8F0F7';
	if( row.style ) row.style.cursor='pointer';
}
function rowOut( row )
{
	row.style.background = '#F9F5E4';
}