var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-9509970-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

function showMyVideos2(data) {
  var feed = data.feed;
  var entries = feed.entry || [];
  var html = [''];

    var entry = entries[0];
    var title = entry.title.$t;
    var thumbnailUrl = entries[0].media$group.media$thumbnail[0].url;
    var playerUrl = entries[0].media$group.media$content[0].url;
    html.push('<div style="width:275px"><div class="titlec" style="float:left; width:130px"><a href="http://www.youtube.com/user/pressclublviv/featured" target="_blank"><img src="', 
              thumbnailUrl, '" width="130" height="97"/></a></div> <div style="float:left; width:140px; margin-left:5px"><a href="http://www.youtube.com/user/pressclublviv/featured" target="_blank">', title, '</a></div></div>');
  html.push('</ul><br style="clear: left;"/>');
  document.getElementById('videos2').innerHTML = html.join('');
 
}
