$(document).ready( function(){
   $('.slideshow').live('mouseover mouseout', 
        function(event) {
            if(event.type == 'mouseover'){
                $(this).children('.left-button, .right-button').stop(true, true).fadeIn();
            }
            else {
                $(this).children('.left-button, .right-button').stop(true, true).fadeIn();
            }
        }
    ); 
    simpleSlide();    
});

