function articleover(inout,artid)
{
	if(document.getElementById("ar"+artid)) {
		row = document.getElementById("ar"+artid);
		if(inout == 1){
			row.style.backgroundColor = '#dfdfdf';
			document.getElementById("arone"+artid).style.backgroundColor = '#dfdfdf';
			document.getElementById("artwo"+artid).style.backgroundColor = '#dfdfdf';
			document.getElementById("arthr"+artid).style.backgroundColor = '#dfdfdf';
		}
		else{
			row.style.backgroundColor = '#dfdfdf';
			document.getElementById("arone"+artid).style.backgroundColor = '#f7f7f7';
			document.getElementById("artwo"+artid).style.backgroundColor = '#f7f7f7';
			document.getElementById("arthr"+artid).style.backgroundColor = '#f7f7f7';
		}
	}
}
