jQuery(document).ready(function() {
                jQuery('.carousel-box').jcarousel({
            scroll: 1
            });
            });

             $(document).ready(function() {
               $('#item1 .more-info').hide();
               $('#item1 .toggler-container').click( function() {
                $('#item1 .more-info').show();
                $(this).hide();
               });
                $('#item1 .toggler-advanced-container').click( function() {
                $('#item1 .more-info').hide();
                $('#item1 .toggler-container').show();
               });
             });
             
             $(document).ready(function() {
               $('#item2 .more-info').hide();
               $('#item2 .toggler-container').click( function() {
                $('#item2 .more-info').show();
                $(this).hide();
               });
                $('#item2 .toggler-advanced-container').click( function() {
                $('#item2 .more-info').hide();
                $('#item2 .toggler-container').show();
               });
             });

             $(document).ready(function() {
               $('#item3 .more-info').hide();
               $('#item3 .toggler-container').click( function() {
                $('#item3 .more-info').show();
                $(this).hide();
               });
                $('#item3 .toggler-advanced-container').click( function() {
                $('#item3 .more-info').hide();
                $('#item3 .toggler-container').show();
               });
             });

             $(document).ready(function() {
               $('#item4 .more-info').hide();
               $('#item4 .toggler-container').click( function() {
                $('#item4 .more-info').show();
                $(this).hide();
               });
                $('#item4 .toggler-advanced-container').click( function() {
                $('#item4 .more-info').hide();
                $('#item4 .toggler-container').show();
               });
             });

            $(document).ready(function(){
                //hide the all of the element with class msg_body
                // $(".hidden-info").hide();
                //toggle the componenet with class msg_body
                $(".opener").click(function(){
                  $(this).toggleClass("opener-clicked");
                  $(this).next(".hidden-info").toggle();
                  $(this).children(".toggler-container,.toggler-advanced-container").toggle();

                });
            });

            $(document).ready(function()
            {
              //for table row
              $("tr:even").css("background-color", "#F5F5F5");
              $("tr:odd").css("background-color", "white");
            });
