function videoload(){
    
    var videoInit = $("#video-feed li:first-child a").attr("ref");
    $("#video-feed li:first-child a").addClass("current-vid");

    $("#video-display").tubeplayer({
    	width: 560, // the width of the player
    	height: 315, // the height of the player
    	initialVideo: videoInit // the video that is loaded into the player
    });

    $("#video-feed").find("a").click(function(e) {
        e.preventDefault();
        if (!$(this).hasClass("current-vid")) {
            var videoID = $(this).attr("ref");
            $(".current-vid").removeClass("current-vid");
            $(this).addClass("current-vid");
            $("#video-display").tubeplayer("play", videoID);
        }
    });
}

