$(document).ready(function(){	
	$.easy.navigation();
	$.easy.tooltip();
	$.easy.popup({ 'selector' : 'a[rel*=facebox]', 'preloaderText' : 'Изображение загружается',	'closeText' : 'ЗАКРЫТЬ'});
	$.easy.external();
	$.easy.rotate();
	$.easy.forms();
	$.easy.showhide();
	$.easy.jump();
	
	var interval;
	$('ul.round').roundabout()
					.hover(
						function() {clearInterval(interval);},
						function() {interval = startAutoPlay();}
					);
				interval = startAutoPlay();
			});
function startAutoPlay() {return setInterval(function() {$('ul.round').roundabout_animateToNextChild();}, 2000)};

