//begin JQuery Function step #1
$(function(){
var interval;
// hover function  step #2
$("#roundAbout").hover(function(){
        clearInterval(interval);
        },
        //mouse out function the hover function accepts two functions one for hover, and one for mouseout
        function(){
                interval = autoPlay();
        }); //end hover function
//autoplay function  step #3
function autoPlay() {
return setInterval(function() {
$('#roundAbout').roundabout_animateToNextChild()
        },4500);
}
// autoplay onload step #4
interval = autoPlay();
// the roundabout function, step #5
$("#roundAbout").roundabout({
        duration : 1100,
		reflect: true,
        minOpacity : .7,
        minScale : .6,
        btnNext : "#btnNext",
        btnPrev : "#btnPrev"
        }); // end roundabout function
}); //end JQuery function
