function cb(obj){
	if(obj.style.borderColor=='red'){
		obj.style.borderColor='black';
	}
	else{
		obj.style.borderColor='red';
	}
}	


