$('document').ready(function() {
   effects.initPopups();
});

var effects = {
   initPopups : function() {
      var _this = this;
      
      $('.popup.snapd').click(function() {
         $('#overlay').toggle();
         $('#popup-snapd').toggle();
         return false;
      });
      
      $('.popup.restoration').click(function() {
         $('#overlay').toggle();
         $('#popup-restoration').toggle();
         return false;
      });
      
      $('.popup.identitymd').click(function() {
         $('#overlay').toggle();
         $('#popup-identitymd').toggle();
         return false;
      });
      
      $('.close-button').click(function() {
         $(this).parent().hide();
         $('#overlay').hide();
         return false;
      });
   }
};
