
function newsRollOver(id)
{
	var news;
	news = document.getElementById(id);
	news.style.backgroundColor = '#E6E6F6';
}

function newsRollOut(id)
{
	var news;
	news = document.getElementById(id);
	news.style.backgroundColor = '#EFEFFF';
}


function termineRollOver(id)
{
	var news;
	news = document.getElementById(id);
	news.style.backgroundColor = '#F6E6E6';
}

function termineRollOut(id)
{
	var news;
	news = document.getElementById(id);
	news.style.backgroundColor = '#F6EFEF';
}
