
      $(document).ready(function () {
        $("#waterwheel-carousel-horizon").waterwheelCarousel({
            startingWaveSeparation: 0,      // The amount of pixels to separate each item from the horizon. Can be negative or positive to move "wave" above or below plane. Set to '0' to keep all images along horizon.
            centerOffset: 0,                // Amount of pixels to offset the horizon from either the top edge (for a horizontal carousel) or the left edge (for a vertical carousel).
            startingItemSeparation: 220,    // The amount if pixels to separate each item from one another TO BEGIN WITH. This value decrements incrementally based on the option below.
            itemSeparationFactor: .5,       // Multiplied by the startingItemSeparation exponentially to determine item separation for all items. (ex, a value of 0.5 will reduce the distance by half for each further item).
            itemDecreaseFactor: .9,         // Value between '0' and '1' used to determine how drastically the images size reduces as it spans out.
            opacityDecreaseFactor: 0,       // Value between '0' and '1' used to determine how drastically the images opacity reduces as it spans out.
            autoPlay: 0,                    // The speed in milliseconds to wait before auto-rotating. Positive value for a left to right movement, negative for a right to left. Zero to turn off.
            speed: 500                      // Time in milliseconds it takes to rotate the carousel from one item to the adjacent.
                                            
                                            // Let op: achter de laatste optie mag geen komma staan, anders werkt de slider niet in IE8 en lager
                                            
                                            // Meer opties: http://www.bkosborne.com/jquery-waterwheel-carousel/options
        });
      });

