+(UIColor*)tableViewBlue
{
static UIColor* color = nil;
if (! color)
color = [[UIColor alloc] initWithRed:50.0f/255.0f green:79.0f/255.0f blue:133.0f/255.0f alpha:1.0f];
return color;
}
[UIColor colorWithRed:(117.0/255.0) green:(143.0/255.0) blue:(179.0/255.0) alpha:1];