var show_whats_this = function() {
    var teaser = document.getElementById('whats-this-teaser');
    var teaserText = document.getElementById('whats-this-teaser-text');
    teaserText.style.display = 'block';
    teaser.style.width = '208px';
    return true;
}

