$(document).ready(function(){

	$(".slidetabs").tabs(".slides > div", {effect: 'horizontal', rotate: true, fadeOutSpeed: "slow", fadeInSpeed: "slow"}).slideshow({autoplay: true, clickable: false, interval: 5000});
	
$('#rss-news').rssfeed('http://www.fiercemobilecontent.com/feed', {
		limit: 2,
		date: 0,
		header: 0,
		titletag: 'span'
	});
	
	  
var interval;
				
				$('#round')
					.roundabout()
					.hover(
						function() {
							// oh no, it's the cops!
							clearInterval(interval);
						},
						function() {
							// false alarm: PARTY!
							interval = startAutoPlay();
						}
					);
				
				// let's get this party started
				interval = startAutoPlay();
	
});


function startAutoPlay() {
				return setInterval(function() {
					$('#round').roundabout_animateToNextChild();
				}, 4000);
			}
