(function($){
    $(document).ready(function(){

            $("#slidesCarousel").JohnsonsBabyUXCarousel({
                    next: '#slidesCarouselNext',
                    prev: '#slidesCarouselPrev',
                    snap: true
            });

            $("a.newWindow").each(function(){
                    var self = $(this);
                    var href = self.attr('href');
                    self.click(function(event) {
                            event.preventDefault();
                            window.open(href);
                            return false;
                    });
            });

    });

    var timer = setTimeout(function() {
        //$('#surveyMonkey').trigger('click');
        //$.prettyPhoto.open('https://www.surveymonkey.com/jsPopInvite.aspx?sm=StWWWdoPAhRl5hCztQiWTQ%3d%3d&iframe=true&width=500&height=350');
        //window.open('https://www.surveymonkey.com/jsPopInvite.aspx?sm=StWWWdoPAhRl5hCztQiWTQ%3d%3d', 'invitationwindow', 'height=350,width=500,scrollbars=yes,resizable=yes,status=yes');
        killTimer();
    }, 60000);

    function killTimer() {
        clearTimeout(timer);
    }

})($)
