func (d *detail) getSourceType(topArea *goquery.Selection) string {
    typeStr := topArea.Find("small").First().Text()
    typeStr = strings.Replace(typeStr, "(", "", -1)
    typeStr = strings.Replace(typeStr, ")", "", -1)
    return strings.ToLower(typeStr)