func (r *review) getSourceType(sourceArea *goquery.Selection) string {
    typ := sourceArea.Find("small").First().Text()
    typ = strings.Replace(typ, "(", "", -1)
    typ = strings.Replace(typ, ")", "", -1)
    return strings.ToLower(typ)