/**
 * @author Alex Jasse <jasse@skygate.de> 
 */

// Create an empty console.log func, so everything works if firebug is not installed
try { console.log('') } 
catch(e) { console = { log: function() {} }; }

var PrototypeWindowSettings = {
    theme: 'alphacube',
    
    dialog: { 
        staysVisible: 3000, // How long dialog will stay visible (in ms)
    
        width:  200,
        height: 150,
        
        showEffect: Effect.Appear,
        hideEffect: Effect.DropOut
    },
    
    confirmDialog: { 
        width:  300,
        height: 75,
        
        showEffect: Effect.Appear,
        hideEffect: Effect.DropOut
    },

    
    window: {
        resizable: true,
        draggable: true,

        width:     640,
        height:    480,

        showEffect: Effect.Appear,
        hideEffect: Effect.Shrink
    },
    
    effectOptions: { duration: .5 }
}

