// JavaScript Document

    jQuery.fn.fadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: 'toggle'}, speed, easing, callback);  
    };
 
    $(document).ready(function() {  
     showPopUps = "yes";
	 $('#tellfriend').hide();
  	 $('a.bucky, a.launchMe, #tellfriend a.close').click(function() 
       {
         $("#tellfriend").fadeToggle('slow');
         $('.popMeTop').UnfreezeAllBubblePopups();
         $('.popMeBottom').UnfreezeAllBubblePopups();
         $("#main_also").removeClass("dim").addClass("bright");    
         showPopUps = "yes";//alert(showPopUps);
       });
     }); 

    $(document).ready(function() {  
     showPopUps = "yes";
	 $('#couponfriend').hide();
  	 $('a.bucky, a.launchMe, #couponfriend a.close').click(function() 
       {
         $("#couponfriend").fadeToggle('slow');
         $('.popMeTop').UnfreezeAllBubblePopups();
         $('.popMeBottom').UnfreezeAllBubblePopups();
         $("#main_also").removeClass("dim").addClass("bright");    
         showPopUps = "yes";//alert(showPopUps);
       });
     }); 

