function NCfrontend()
{
	
}

NCfrontend.prototype.mouseOver = function(currentLink)
{
	if (currentLink.className == 'articlelink')
	{
		currentLink.className ='articlelinkhover';
	}
	else if(currentLink.className == 'categorylink')
	{
		currentLink.className ='categorylinkhover';
	}
}

NCfrontend.prototype.mouseOut = function(currentLink)
{
	if (currentLink.className == 'articlelinkhover')
	{
		currentLink.className ='articlelink';
	}
	else if(currentLink.className == 'categorylinkhover')
	{
		currentLink.className ='categorylink';
	}
}

NCfrontend = new NCfrontend();