$(document).ready(function(){
        //Carrossel Center
        /*
        $('.ww-carousel .next').click( function(){ 
            alert("next");
            return false;
        });        
        
        $('.ww-carousel .prev').click( function(){ 
            alert("prev");
            return false;
        }); 
        */
        
        $("#featureCarousel").featureCarousel({
                    startingFeature: 3,
                    topPadding: 10,
                    sidePadding: 20,
                    smallFeatureOffset: 30
                    // include options like this:
                    // (use quotes only for string values, and no trailing comma after last option)
                    // option: value,
                    // option: value
        });
        
        /*
        $("#waterwheelCarousel").waterwheelCarousel("horizontal",{
            startingItem: 3,
            startingItemSeparation: 25,
            itemSeparationFactor: .4,
            startingWaveSeparation: 3
        });
        */
});        

