function top1mouseOver(id)
{
	document.getElementById(id).className = 'normal_over';
}
function top1mouseOut(id)
{
	document.getElementById(id).className = 'normal';
}
function top1mouseClick(uri)
{
	document.location = uri;
}

function top2mouseOver(id)
{
	document.getElementById(id).className = 'normal_over';
}
function top2mouseOut(id)
{
	document.getElementById(id).className = 'normal';
}
function top2mouseClick(uri)
{
	document.location = uri;
}