function NCfrontend()
{
	
}

NCfrontend.prototype.mouseOver = function(currentLink)
{
	if (currentLink.className == 'normallink')
	{
		currentLink.className ='rolloverlink';
	}
}

NCfrontend.prototype.mouseOut = function(currentLink)
{
	if (currentLink.className == 'rolloverlink')
	{
		currentLink.className ='normallink';
	}
}

NCfrontend = new NCfrontend();