function initVideos(){
    // Dialog
    $('#dialog').dialog({
        autoOpen: false,
        show: 'blind',
        width: 420,
        buttons: {
            "Close": function() {
                $(this).dialog("close");
            }
        }
    });

    // Dialog Link
    $('#opener').click(function(event){
        event.preventDefault();
        $('#dialog').dialog('open');
    });
}

function ajaxReloadVideos(){
    $.ajax({
        type: "GET",
        url: "navigation/navigationRightPage.jsp",
        dataType:"html",
        success:
        function(data){
            $("#naviRight").html(data);
            initVideos();
        },
        error:
        function (xhr){
            alert(xhr.status+" "+xhr.statusText);
        }
    });
}



