﻿function RegisterOmnitureLinkTrack(event, eventCondition) {
    var fireOmniture = true;

    if (eventCondition && typeof eventCondition == 'function') {
        fireOmniture = eventCondition();
    }

    if (s == undefined) {
        var s = GetOmnitureObject('jillianmichaels');

    }

    ClearOmnitureObject(s);

    if (fireOmniture && s && event && typeof s.tl == 'function') {

        s.linkTrackVars = "events"
        s.linkTrackEvents = event;
        s.events = event;
        var s_code = s.tl();
        
        if (s_code) 
        {
            document.write(s_code);
        }
       
        return true;
    }

    return false;
}
function ClearOmnitureObject(sObj) {
    for (var i = 0; i < 100; i++) {
        sObj['prop' + i] = '';
        sObj['eVar' + i] = '';
    }
    sObj.products = '';
    sObj.events = '';
    sObj.linkTrackVars = '';
    sObj.server = '';
    sObj.channel = '';
    sObj.pageName = '';
    sObj.pageType = '';
    sObj.campaign = '';
}
function checkForDiv(id) { var div = document.getElementById(id); if (div) { return true } else { return false } }
jQuery(function($) {
    if (checkForDiv("privacy")) {
        $("#privacy").click(function() {
            $("#privacyPop").fadeIn("slow");
        });
        $("#privacyPop #close").click(function() {
            $("#privacyPop").fadeOut("slow");
        });
    }

    //Allows only numbers to be typed for input boxes with a class named 'numOnly'
    $('input:text').keypress(function(e) {
        if ($(this).hasClass('numOnly')) {
            if (e.which != 8 && (e.which < 48 || e.which > 57)) {
                return false;
            }
        }
    });

    // Request form
    $('select[id$=emailfield_isTicketed]').change(function() {
        var $price = $("#ticketPrice");

        if ($(this).val() == "Yes") {
            $price.removeClass('hideMe');
        } else if ($(this).val() == "No") {
            $price.addClass('hideMe');
        }
    });
    $('input[id$=emailfield_EventDate]').datepicker({ minDate: 1 });
    $('input[id$=emailfield_ResponseDate]').datepicker({ minDate: 1 });

    // Translate email error message
    var translate = function() {
        var msg = $("#espanolError span");
        if (msg.text() !== "") {
            msg.text("Por favor, introduzca una dirección válida de correo electrónico.");
        }
    } ();


    $(window).ready(function($) {
        $(".iab").mouseover(function() {
            $(".iabnotice").addClass('iabnoticeshow').fadeIn("slow");

        });
        $(".iabnotice .close").click(function() {
            $(".iabnotice").fadeOut("slow");
        });
    });


    var newsletterHint = function() { 
         // Search box hint
        var $nl = $(".losing-it-NL");
        var hint = $nl.attr("title");
        if (hint) {
            $nl.val(hint);
        }
        $nl.blur(function() {
            if (this.value === '') {
                $(this).val(hint);
            }

        }).focus(function() {
            if (this.value === hint) {
                $(this).val('');
            }
        });

    
    }();

});




//    Rotator for Test Funnel Page;
$(document).ready(function() {
    //Code goes here
    //Show the paging and activate its first link
    $(".paging").show();
    $(".paging a:first").addClass("active");

    //Get size of the image, how many images there are, then determin the size of the image reel.
    var imageWidth = $(".window").width();
    var imageSum = $(".image_reel div").size();
    var imageReelWidth = imageWidth * imageSum;


    //Adjust the image reel to its new size
    $(".image_reel").css({ 'width': imageReelWidth });

    //Paging  and Slider Function
    rotate = function() {
        var rel = $active.attr("rel") ? $active.attr("rel") : 1;
        var triggerID = rel - 1; //Get number of times to slide
        var image_reelPosition = triggerID * imageWidth; //Determines the distance the image reel needs to slide

        $(".paging a").removeClass('active'); //Remove all active class
        $active.addClass('active'); //Add active class (the $active is declared in the rotateSwitch function)

        //Slider Animation
        $(".image_reel").animate({
            left: -image_reelPosition
        }, 2);
        //            alert(image_reelPosition);
    };

    //Rotation  and Timing Event
    rotateSwitch = function() {
        play = setInterval(function() { //Set timer - this will repeat itself every 7 seconds
            $active = $('.paging a.active').next(); //Move to the next paging
            if ($active.length === 0) { //If paging reaches the end...
                $active = $('.paging a:first'); //go back to first
            }
            rotate(); //Trigger the paging and slider function
        }, 4000); //Timer speed in milliseconds (7 seconds)
    };

    dontRotateSwitch = function() {
    play = clearTimeout; //Timer speed in milliseconds (7 seconds)
    };


    var checkForID = function(id) {
        var div = document.getElementById(id);
        return (div) ? true : false;
    };

    $(document).ready(function() {
        if (checkForID("timerOn")) {
            rotateSwitch(); //Run auto-rotating function on launch

            //On Click
            $(".paging a").click(function() {
                $active = $(this); //Activate the clicked paging
                //Reset Timer
                clearInterval(play); //Stop the rotation
                rotate(); //Trigger rotation immediately
                //rotateSwitch(); // Resume rotation timer
                return false; //Prevent browser jump to link anchor
            });
            
        }
        else {
            dontRotateSwitch(); //Stop auto-rotating function on launch

            //On Click
            $(".paging a").click(function() {
                $active = $(this); //Activate the clicked paging
                //Reset Timer
                rotate(); //Trigger rotation immediately
                //rotateSwitch(); // Resume rotation timer
                return false; //Prevent browser jump to link anchor
            });
            
        }
    });


});




/* ************************************************************************** */

var homePageSlider = function() {

    //    function formatText(index, panel) {
    //        return index + "";
    //    }

    var slider = $('.anythingSlider');
    slider.anythingSlider({
        easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
        delay: 5000,                    // How long between slide transitions in AutoPlay mode
        startStopped: false,            // If autoPlay is on, this can force it to start stopped
        animationTime: 600,             // How long the slide transition takes
        hashTags: true,                 // Should links change the hashtag in the URL?
        buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
        startText: "Go",             // Start text
        stopText: "Stop",               // Stop text
        navigationFormatter: formatText       // Details at the top of the file on this use (advanced use)
    }); // END anythingSlider
    $("#slide-jump").click(function() {
        slider.anythingSlider(6);
    });



    $.anythingSlider = function(el, options) {
        // To avoid scope issues, use 'base' instead of 'this'
        // to reference this class from internal events and functions.
        var base = this;

        // Access to jQuery and DOM versions of element
        base.$el = $(el);
        base.el = el;

        // Set up a few defaults
        base.currentPage = 1;
        base.timer = null;
        base.playing = false;

        // Add a reverse reference to the DOM object
        base.$el.data("AnythingSlider", base);

        base.init = function() {
            base.options = $.extend({}, $.anythingSlider.defaults, options);

            // Cache existing DOM elements for later 
            base.$wrapper = base.$el.find('> div').css('overflow', 'hidden');
            base.$slider = base.$wrapper.find('> ul');
            base.$items = base.$slider.find('> li');
            base.$single = base.$items.filter(':first');

            // Build the navigation if needed
            if (base.options.buildNavigation) base.buildNavigation();

            // Get the details
            base.singleWidth = base.$single.outerWidth();
            base.pages = base.$items.length;

            // Top and tail the list with 'visible' number of items, top has the last section, and tail has the first
            // This supports the "infinite" scrolling
            base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
            base.$items.filter(':last').after(base.$items.filter(':first').clone().addClass('cloned'));

            // We just added two items, time to re-cache the list
            base.$items = base.$slider.find('> li'); // reselect

            // Setup our forward/backward navigation
            base.buildNextBackButtons();

            // If autoPlay functionality is included, then initialize the settings
            if (base.options.autoPlay) {
                base.playing = !base.options.startStopped; // Sets the playing variable to false if startStopped is true
                base.buildAutoPlay();
            };

            // If pauseOnHover then add hover effects
            if (base.options.pauseOnHover) {
                base.$el.hover(function() {
                    base.clearTimer();
                }, function() {
                    base.startStop(base.playing);
                });
            }

            // If a hash can not be used to trigger the plugin, then go to page 1
            if ((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false) {
                base.setCurrentPage(1);
            };
        };

        base.gotoPage = function(page, autoplay) {
            // When autoplay isn't passed, we stop the timer
            if (autoplay !== true) autoplay = false;
            if (!autoplay) base.startStop(false);

            if (typeof (page) == "undefined" || page == null) {
                page = 1;
                base.setCurrentPage(1);
            };

            // Just check for bounds
            if (page > base.pages + 1) page = base.pages;
            if (page < 0) page = 1;

            var dir = page < base.currentPage ? -1 : 1,
                n = Math.abs(base.currentPage - page),
                left = base.singleWidth * dir * n;

            base.$wrapper.filter(':not(:animated)').animate({
                scrollLeft: '+=' + left
            }, base.options.animationTime, base.options.easing, function() {
                if (page == 0) {
                    base.$wrapper.scrollLeft(base.singleWidth * base.pages);
                    page = base.pages;
                } else if (page > base.pages) {
                    base.$wrapper.scrollLeft(base.singleWidth);
                    // reset back to start position
                    page = 1;
                };
                base.setCurrentPage(page);

            });
        };

        base.setCurrentPage = function(page, move) {
            // Set visual
            if (base.options.buildNavigation) {
                base.$nav.find('.cur').removeClass('cur');
                $(base.$navLinks[page - 1]).addClass('cur');
            };

            // Only change left if move does not equal false
            if (move !== false) base.$wrapper.scrollLeft(base.singleWidth * page);

            // Update local variable
            base.currentPage = page;
        };

        base.goForward = function(autoplay) {
            if (autoplay !== true) autoplay = false;
            base.gotoPage(base.currentPage + 1, autoplay);
        };

        base.goBack = function() {
            base.gotoPage(base.currentPage - 1);
        };

        // This method tries to find a hash that matches panel-X
        // If found, it tries to find a matching item
        // If that is found as well, then that item starts visible
        base.gotoHash = function() {
            if (/^#?panel-\d+$/.test(window.location.hash)) {
                var index = parseInt(window.location.hash.substr(7));
                var $item = base.$items.filter(':eq(' + index + ')');
                if ($item.length != 0) {
                    base.setCurrentPage(index);
                    return true;
                };
            };
            return false; // A item wasn't found;
        };


        // Creates the numbered navigation links
        base.buildNavigation = function() {
            base.$nav = $("<div id='thumbNav' class='navi'></div>").appendTo(base.$el);
            base.$items.each(function(i, el) {
                var index = i + 1;
                var $a = $("<a href='#' onCLick='omnitureOnSubmit()'></a>");


                // If a formatter function is present, use it
                if (typeof (base.options.navigationFormatter) == "function") {
                    $a.html(base.options.navigationFormatter(index, $(this)));
                } else {
                    $a.text(index);
                }
                $a.click(function(e) {
                    base.gotoPage(index);
                    RefreshAds();

                    if (s) {
                        s.events = "event2"; // event2 to indicate an ad refresh
                        var s_code = s.t();
                    }

                    if (base.options.hashTags)
                        base.setHash('panel-' + index);

                    e.preventDefault();
                });
                base.$nav.append($a);
            });
            base.$navLinks = base.$nav.find('> a');


        };

        // Creates the Forward/Backward buttons
        base.buildNextBackButtons = function() {
            positionforward = (links / 2) * 26;
            positionback = (links / 2) * 26 + 5;
            var $forward = $('<a class="arrow forward"></a>').attr('style', 'left: ' + positionforward + 'px'),
				$back = $('<a class="arrow back"></a>').attr('style', 'left: -' + positionback + 'px');

            // Bind to the forward and back buttons
            $back.click(function(e) {
                base.goBack();
                RefreshAds();
                if (s) {
                    s.events = "event2"; // event2 to indicate an ad refresh
                    var s_code = s.t();
                }
                e.preventDefault();
            });

            $forward.click(function(e) {
                base.goForward();
                RefreshAds();
                if (s) {
                    s.events = "event2"; // event2 to indicate an ad refresh
                    var s_code = s.t();
                }
                e.preventDefault();
            });

            // Append elements to page
            base.$nav.after($back).after($forward);
        };



        // Creates the Start/Stop button
        base.buildAutoPlay = function() {

            base.$startStop = $("").html(base.playing ? base.options.stopText : base.options.startText);
            base.$el.append(base.$startStop);
            base.$startStop.click(function(e) {
                base.startStop(!base.playing);
                e.preventDefault();
            });

            // Use the same setting, but trigger the start;
            base.startStop(base.playing);
        };

        // Handles stopping and playing the slideshow
        // Pass startStop(false) to stop and startStop(true) to play
        base.startStop = function(playing) {
            if (playing !== true) playing = false; // Default if not supplied is false

            // Update variable
            base.playing = playing;

            // Toggle playing and text
            if (base.options.autoPlay) base.$startStop.toggleClass("playing", playing).html(playing ? base.options.stopText : base.options.startText);

            if (playing) {
                base.clearTimer(); // Just in case this was triggered twice in a row
                base.timer = window.setInterval(function() {
                    base.goForward(true);
                }, base.options.delay);
            } else {
                base.clearTimer();
            };
        };

        base.clearTimer = function() {
            // Clear the timer only if it is set
            if (base.timer) window.clearInterval(base.timer);
        };

        // Taken from AJAXY jquery.history Plugin
        base.setHash = function(hash) {
            // Write hash
            if (typeof window.location.hash !== 'undefined') {
                if (window.location.hash !== hash) {
                    window.location.hash = hash;
                };
            } else if (location.hash !== hash) {
                location.hash = hash;
            };

            // Done
            return hash;
        };
        // <-- End AJAXY code

        // Trigger the initialization
        base.init();

    };




    $.fn.anythingSlider = function(options) {
        if (typeof (options) == "object") {
            return this.each(function(i) {
                (new $.anythingSlider(this, options));

                // This plugin supports multiple instances, but only one can support hash-tag support
                // This disables hash-tags on all items but the first one
                options.hashTags = false;
            });
        } else if (typeof (options) == "number") {

            return this.each(function(i) {
                var anySlide = $(this).data('AnythingSlider');
                if (anySlide) {
                    anySlide.gotoPage(options);
                }
            });
        }
    };
};


function popToggle(url) {
    var myWin = window.open(url, 'myWin', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=650,height=750');
}

function _sendtofriendpop(puid) {
    myWin = window.open("/mail/sendmail.aspx?puid=" + puid, 'myWin', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=670,height=715');
}


