- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
	if(contentRows == 0) {
		numberOfSections = 1;
		return 1;
	} else {
		numberOfSections = contentRows / kRowsPerSection;
		if(contentRows % kRowsPerSection != 0) {
			numberOfSections++;
		}
		
		if(adDidLoad) {
			numberOfSections *= 2;
		}
		
		return numberOfSections;
	}
}


// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
	if(contentRows == 0) {
		return 0;
	}
	
	if([self isAdSection:section]) {
		return 1;
	}
	
	if([self isContentSection:section]) {
		return [self numberOfRowsInContentSection:section];
	}
	
	return 0;
}
