$(document).ready(
        function(){
          $('#calendar-wrap').cycle({
            fx:    'scrollHorz', 
            timeout:       5000,
            speed:  1000
            
          });
          $('.fixture-wrap .col-3-content').cycle({
            fx:    'scrollHorz',
            timeout:       5000,
            speed:  1000
          });               
      });

 $(document).ready(function(){
     $("#embed").append("<div id ='first-vid'></div>");
     $.getJSON("http://gdata.youtube.com/feeds/api/users/BasketballQLDlive/uploads?max-results=1&orderby=published&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='250' src='http://www.youtube.com/embed/"+val.id+"?rel=0&autohide=1' frameborder='0' name='vid-frame' allowfullscreen></iframe>");
      }
        });
    });
}); 

