function mycarousel_initCallback(carousel) {
    jQuery('.carousel-control a').bind('mouseover', function() {
        carousel.scroll(jQuery.carousel.intval(jQuery(this).text()));
        return false;
    });
};


// Ride the carousel...
jQuery(document).ready(function() {
    jQuery("#slide_images").carousel({
        scroll: 1,
        start: 5,
        initCallback: mycarousel_initCallback,
        // This tells Carousel NOT to autobuild prev/next buttons
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
});
