function	pagination_over(el)
{
	b = el.className;
	if (!b.match(/ui-state-disabled/))
	{
		el.style.fontWeight = 'bolder';
		el.style.color = '#000000';
	}
}

function	pagination_out(el)
{
	b = el.className;
	if (!b.match(/ui-state-disabled/))
	{
		el.style.fontWeight = 'normal';
		el.style.color = '#666666';
	}
}

function	pagination_bt_over(el)
{
	el.style.color = '#000000';
}

function	pagination_bt_out(el)
{
	el.style.color = '#666666';
}
