function showMyVideos(data){
var show_more='<a href="http://www.youtube.com/user/LBAATournament">Watch More LBAA Videos</a>';
    var extra_vid = '<p><a href="http://www.youtube.com/user/meetdaveschroeder#p/u/42/L5hex3avoBg"><img  style="float:left" src="http://i1.ytimg.com/vi/L5hex3avoBg/default.jpg"</img></a><div class="video_detail"><h3>LBAA Tourney Invades Valpo</h3>';
    extra_vid += "The Lutheran Basketball Association of America's Tournament of Champions again was highlighted by over 100 games in 3 days at the ARC";
    extra_vid += '<br />';
    extra_vid += '<a href="http://www.youtube.com/user/meetdaveschroeder#p/u/42/L5hex3avoBg">Watch</a><br />';
    extra_vid += '</div></p>';
    var feed = data.feed;
    var entries = feed.entry || [];
    var html = '<div style="margin-left:10px;margin-top:5px;">';
    for (var i = 0; i < 3; i++) {
        if (entries[i]) {
            html += '<p>';
            var entry = entries[i];
            var title = entry.title.$t;
            var content = entry.content.$t;
            var yt_link = entry.link[0].href;
            var img_link = entry.media$group.media$thumbnail[1].url;
            html += '<a href="'+yt_link+'"><img src="' + img_link + '" style="float:left"></img></a>';
            html += '<div class="video_cont"><h3>' + title + "</h3>";
            html += content + "<br />";
            html += '<a href="' + yt_link + '">Watch</a><br />';
            html += '</div></p><br />';
        }
    }
    if (entries.length < 3) {
        html += extra_vid;
    }
html+=show_more;
    html += "</div>";
    document.getElementById('videos').innerHTML = html;
}

