// voots . autoplay slide . horizontal
                jQuery(document).ready(function($) {    
                    var interval;    
                    $('#featured ul')    
                    .roundabout({    
                        easing: 'easeOutInCirc',        
                        duration: 600 }       
                )    
                    .hover(    
                    function() {    
                        // oh no, it's the cops!    
                        clearInterval(interval);    
                    },    
                    function() {    
                        // false alarm: PARTY!    
                        interval = startAutoPlay();    
                    }    
                );                                                    
                    // let's get this party started    
                    interval = startAutoPlay();    
                     $('#lastestblog a[title]').tooltip({
                         events:{
                             def:"load ready mouseover,mouseout"
                         }
                     });
                });    
                function startAutoPlay() {    
                    return setInterval(function() {    
                        jQuery('#featured ul').roundabout_animateToNextChild();     
                    }, 6000);    
                }    

