/*
New Concept Group
Date: 15/03/2011
Author: Antonio Cesar
*/

$(document).ready(function(){

	var interval;

	$('#slide').roundabout({
		shape: 'tearDrop'
	});

	interval = setInterval(function() {
		$('#slide').roundabout_animateToNextChild();
	}, 3000);

	$('#slide li').hover(function(){
		$('#slide_text').html($(this).find('.slide_description').html());
	},function(){
		$('#slide_text').html('');
	});

	$('#slide').hover(function(){
		clearInterval(interval);
	},function(){
		$('#slide').roundabout_animateToNextChild();
		interval = setInterval(function() {
			$('#slide').roundabout_animateToNextChild();
		}, 3000);
	});

});
