$(document).ready(function() {
	$(".right-vid").append("<div id ='first-vid'></div>");
	$.getJSON("http://gdata.youtube.com/feeds/api/users/wnbl/uploads?max-results=1&v=2&alt=jsonc&callback=?", function(data) {
		var dataContainer = $("#first-vid");
		$.each(data.data.items, function(i, val) {
    	if (typeof(val.player) !== 'undefined' && typeof(val.title) !== 'undefined') {
      	dataContainer.append("<iframe width='300' height='170' src='http://www.youtube.com/embed/"+val.id+"?rel=0&autohide=1' frameborder='0' name='vid-frame' allowfullscreen></iframe>");
      }
    });
  });
});
