/* 

This file contains the default configuration options for balloon tooltips.
Default options can be edited in this file or changed after the Balloon object is 
initiliazed as follows:

  var balloon = new Balloon;
  balloon.fontColor   = 'black';
  balloon.fontFamily  = 'Arial, sans-serif';
  balloon.fontSize    = '12pt';
  etc...

*/

// This function adds the default configuration and also custom 
// configuration sets, specified in 'case' stanzas
BalloonConfig = function(balloon, set) {
  set = set || '';

  ////////////////////////////////////////////////////////////////
  // The default "base" config applied to all balloon objects.  //
  // See http://gmod.org/wiki/Popup_Balloons#Customization for  //
  // details about config options                               //
  //                                                            //
  // values can be overriden in custom config cases (see below) //
  ////////////////////////////////////////////////////////////////
  
  
  ///////DO NOT EDIT THESE PLEASE - ERIC BOYER//////
  if (!balloon.configured || set == 'standardBubble') {                //
    balloon.fontColor          = '#001745';                       //
    balloon.fontFamily         = 'Arial, sans-serif';           //
    balloon.fontSize           = '11px';                        //
    balloon.minWidth           = 217;                           //
    balloon.maxWidth           = 500;                           //
    balloon.delayTime          = 100;                           //
    balloon.stem               = true;                          //
    balloon.images             = '/budgetWeb/images/hovers/';    //
    balloon.ieImage            = 'balloon_ie.png';              //
    balloon.balloonImage       = 'balloon.png';                 //
    balloon.upLeftStem         = 'up_left.png';                 //
    balloon.downLeftStem       = 'down_left.png';               //
    balloon.upRightStem        = 'up_right.png';                //
    balloon.downRightStem      = 'down_right.png';              //
    balloon.closeButton        = 'close.png';                   //
    balloon.closeButtonWidth   = 17;                            //
    balloon.allowAJAX          = true;                          //
    balloon.allowIframes       = true;                          //
    balloon.trackCursor        = true;                          //
    balloon.shadow             = 3;                            //
    balloon.padding            = 15;                            //
    balloon.stemHeight         = 27;                            //
    balloon.stemOverlap        = 4;                             //
    balloon.vOffset            = 5;                             //
    balloon.hOffset            = 0;                             //
    balloon.opacity            = 1;                           //
    balloon.configured         = set || true;                   //
  }                                                             //
  ////////////////////////////////////////////////////////////////
  
    ///////DO NOT EDIT THESE PLEASE - ERIC BOYER//////
  if (!balloon.configured || set == 'noStemBubble') {                //
    balloon.fontColor          = '#001745';                       //
    balloon.fontFamily         = 'Arial, sans-serif';           //
    balloon.fontSize           = '12px';                        //
    balloon.minWidth           = 100;                           //
    balloon.maxWidth           = 400;                           //
    balloon.delayTime          = 350;                           //
    balloon.stem               = false;                          //
    balloon.images             = '/budgetWeb/images/hovers/';    //
    balloon.ieImage            = 'balloon_ie.png';              //
    balloon.balloonImage       = 'balloon.png';                 //
    balloon.closeButton        = 'close.png';                   //
    balloon.closeButtonWidth   = 17;                            //
    balloon.allowAJAX          = true;                          //
    balloon.allowIframes       = true;                          //
    balloon.trackCursor        = false;                          //
    balloon.shadow             = 10;                            //
    balloon.padding            = 15;                            //
    balloon.opacity            = 1;                           //
    balloon.configured         = set || true;                   //
  }                                                             //
}

