///////////////////////////////////
//         ajax im 3.22          //
//    AJAX Instant Messenger     //
//   Copyright (c) 2006-2008     //
// unwieldy studios/Joshua Gross //
//  http://unwieldy.net/ajaxim/  //
//   Do not remove this notice   //
///////////////////////////////////

// Configuration //

// Theme Settings //
var theme         = 'default';         // ajax im theme
var alertWidth    = 400;            // alert window width

// Notification //
var useBlinker    = true;           // Show new message in titlebar when window isn't active.
var blinkSpeed    = 1000;           // How fast to change between the titles when "blinking" (in milliseconds).
var pulsateTitles = true;           // Pulsate (blink) IM window titles on new IM when they are not the active window.
var audioNotify   = true;           // By default, play sounds upon getting an IM?

// Server //
var pingFrequency = 5000;           // How often to ping the server (in milliseconds). Best range between 2500 and 3500 ms.
var pingTo        = 'ajax_im.php';  // The file that is the "server".
var adminPingTo   = 'admin.php';    // The "server" script for admin functions.

// Windows //
var imWidth       = 310;            // Default IM window width
var imHeight      = 335;            // Default IM window height
var imDetachable  = true;           // Enable/Disable ability to detach IM windows from the application
var buddyListLoc  = 1;              // Default buddylist location: 0=left, 1=right (of window)

// Messaging History //
var imHistory     = true;           // Retain conversations with buddies throughout the session?
                                    // How it works: If an IM window is closed an imHistory is true,
                                    //               next time that IM window is opened (during the same session!),
                                    //               the old chat text will be there
