
function goto( element)
{
	if( $(element))
		new Fx.Scroll(window).toElement( $(element));
		
}

function even( element)
{
	if( $(element))
		$(element).setStyle('background-color', '#EEEEEE');
}

function odd( element)
{
	if( $(element))
		$(element).setStyle('background-color', '#FFFFFF');
}
