(function($) {
   $(function() {
       
       $('.rollover').mouseenter(function() {
           $(this).children('div').addClass('hover');
           var img = $(this).children('img');
           var ext = img.attr('src').split('.').pop();
           img.attr('src', img.attr('src').replace('.' + ext, '_hover.' + ext));
       });
       
       $('.rollover').mouseleave(function() {
           $(this).children('div').removeClass('hover');
           var img = $(this).children('img');
           var ext = img.attr('src').split('.').pop();
           img.attr('src', img.attr('src').replace('_hover.' + ext, '.' + ext));
       });
       
       $('#signup').click(function() {
           if ($(this).val() == 'subscribe to news & deals') {
               $(this).val('');
           }
       });
       
       $('#signup').blur(function() {
           if ($(this).val() == '') {
               $(this).val('subscribe to news & deals');
           }
       });
       
       
       $('#energy').mouseenter(function() {
           var offset = $(this).offset();
           offset.left -= 50;
           show_tab(offset, 'For ENERGY: Green tea extract (source of natural caffeine), Glucuronolactone, Vitamin B-12, Resveratrol');
       });
       
       $('.plus-tab').live('mouseleave', function() {
           tab.remove();
       });
       
       $('#immunity').mouseenter(function() {
           var offset = $(this).offset();
           show_tab(offset, 'For IMMUNITY: Vitamin C, Zinc, Selenium, Copper, Astragalus, and Grape Seed Extract, Quercetin and Vitamin D');
       });
       
       $('.slideshow').cycle();
       
       $("#supp_orange_packets").click(function () {
           $(".supp_info_orange_tablets").hide();
           $(".supp_info_acai").hide();
           $(".supp_info_lemonade").hide();
           $(".supp_info_berry").hide();
           $(".supp_info_orange_packets").fadeIn();
        });

        $("#supp_orange_tablets").click(function () {
           $(".supp_info_orange_packets").hide();
           $(".supp_info_acai").hide();
           $(".supp_info_lemonade").hide();
     	   $(".supp_info_berry").hide();
           $(".supp_info_orange_tablets").fadeIn();
        });

        $(".shop_flavor_acai").click(function () {
           $(".supp_info_lemonade").hide();
           $(".supp_info_orange_packets").hide();
           $(".supp_info_orange_tablets").hide();
           $(".supp_info_acai").fadeIn();
     	  $(".supp_info_berry").hide();
        });

        $(".shop_flavor_lemonade").click(function () {
           $(".supp_info_acai").hide();
           $(".supp_info_orange_packets").hide();
           $(".supp_info_orange_tablets").hide();
           $(".supp_info_lemonade").fadeIn();
     	  $(".supp_info_berry").hide();
        });
        $(".shop_flavor_berry").click(function () {
           $(".supp_info_acai").hide();
           $(".supp_info_orange_packets").hide();
           $(".supp_info_orange_tablets").hide();
           $(".supp_info_lemonade").hide();
     	  $(".supp_info_berry").fadeIn();
        });
       
       var tab
       
       function show_tab(where, text) {
           tab = $('<div class="plus-tab">' + text + '</div>');
           tab.css('top', (where.top + 10) + 'px');
           tab.css('left', where.left + 'px');
           $('body').append(tab);
       }
       
       Shadowbox.init();
       
   });
})(jQuery);
