var Projects = {};

Projects.ChangeRowStyle = function(bFirst, obj)
{
	if(typeof(bFirst) != "undefined" && bFirst != ""){
		obj.style.backgroundColor = "#000000";
	}else{
		obj.style.backgroundColor = "#ffffff";
	}
	obj.style.color="#000000";
}