function changeNewsTitleClass(obj,type)
{
	var divObjs=obj.parentNode.parentNode.getElementsByTagName("div");
	
	switch(type)
	{
		case 1:
			divObjs[0].className="news_date bold smallfont news_data_hover";
		break;
		case 2:
			divObjs[0].className="news_date bold smallfont";
		break;
	}
}
