I would like to save it so I could call it from anywhere.
+ (CGRect*) VerticalRect:(int) Index
{
if (Index < 0 || Index > 6)
return nil;
nutVerRect[0] = CGRectMake(69,118,94,94);
nutVerRect[1] = CGRectMake(156,118,94,94);
nutVerRect[2] = CGRectMake(26,194,94,94);
nutVerRect[3] = CGRectMake(113,194,94,94);
nutVerRect[4] = CGRectMake(200,194,94,94);
nutVerRect[5] = CGRectMake(69,270,94,94);
nutVerRect[6] = CGRectMake(156,270,94,94);
return &nutVerRect[Index];
}