function changebg(target) {
	var obj=target.getElementsByTagName("p").item(0);
	target.style.backgroundColor='#f0f7fc';
	target.style.cursor = 'pointer';
	obj.style.color='#ffaa00';
	obj.style.fontWeight='normal';
	obj.style.textDecoration='underline';
}
function loadbg(target) {
	var obj=target.getElementsByTagName("p").item(0);
	if(target.className == 'row_odd'){
		target.style.backgroundColor='#f2f2f2';
	}else{
		target.style.backgroundColor='#fff';
	}
	document.body.style.cursor = "default";
	obj.style.color='#0073d6';
	obj.style.fontWeight='normal';
	obj.style.textDecoration='none';
}

