//This function switches the video categories
function switch_category(id) {
        $('#video_playlist').load(
                '/themes/video/ajax/display/video.php?playlist_id='+id
                )
        return false;
}

//Given the id this function loads the title and description
function loadVideoText(id) {
        $("#title").html($("#"+id+"_title").html())
        $("#desc").html($("#"+id+"_desc").html())
}


//This function loads the new video with the title and description
function vision_loadNewVideo(id, start) {
        loadVideoText(id);
        cueNewVideo(id, start);
}

