var Page = Class.create({
    
    //Medias
    imagePath: null, //Netquiz
    soundPath: null,
    videoPath: null, //Netquiz
    videoWidth: null, //Netquiz
    videoHeight: null, //Netquiz
    showSoundController: false,
    showVideoController: true, //Netquiz

    textGuideline: null,
    textMediaTitle: null, //Netquiz
    textMedia: null, //Netquiz
    autoplaySound: false, //Netquiz
    autoplayVideo: false, //Netquiz
    indice: null, //Netquiz
    source: null, //Netquiz
    
    //Settings
    displaySolution: false, //Netquiz
    timerDelay: null,
    timerEnabled: false,
    pageNextEnabled: true,
    pageBackEnabled: false,
    lastPage: false,
    
    //Text vars
    title: null,
    ponderation: null, //Netquiz
    statement: null,
    textGuideline: null,

    //Question
    question: null,

    initialize: function(){},
    
    initQuestion: function(questionNb){
        this.question = new QuestionMultipleChoices(questionNb);
    }
});
