"use strict";

dojo.addOnLoad(function () {
  popup.loadPopups([
    { type: 'generic',                   id: 'FREEDEL',            title: 'Discount Disclaimer'              },
    { type: 'generic',                   id: 'free_greeting_card', title: 'Free Greeting Card Details'       },
    { type: 'generic', name: 'GC_Terms', id: 'GC-Terms',           title: 'Gift Card Terms &amp; Conditions' },
    { type: 'generic',                   id: 'SIZES',              title: 'English Muffin Size Guide'        },
    { type: 'generic',                   id: 'TPO',                title: 'Discount Disclaimer'              },
    { type: 'generic',                   id: 'ENOUNCE',            title: 'Gift E-Nouncement&reg; Service'   },
    { type: 'coupon',                    id: 'CLUB'                                                          },
    { type: 'coupon',                    id: 'DELFREE'                                                       },
    { type: 'coupon',                    id: 'JOLLY'                                                         },
    { type: 'coupon',                    id: 'LOVE'                                                          },
    { type: 'coupon',                    id: 'MERRY'                                                         },
    { type: 'coupon',                    id: 'SAVE20'                                                        },
    { type: 'coupon',                    id: 'SHIP45'                                                        },
    { type: 'coupon',                    id: 'SPARKLE'                                                       },
    { type: 'coupon',                    id: 'VALENTINE'                                                     }
  ]);
});


/*********************************************************************************************************************/
/* Navigation Menu                                                                                                   */
/*********************************************************************************************************************/

// Initialize the navigation menu
var menu = {
  init: function(){
    $('#menu .menu, #menu .entry').hover(function () { $(this).addClass('hover'); }, function () { $(this).removeClass('hover'); } );
    if ($.browser.msie && $.browser.version==="6.0") { $('#menu .entries').bgiframe(); }
  }
};
