$(document).ready(function(){
	$('html').oneTime(2000, function(){
		$('.iv-rotator').fadeIn(4000);
	});
	r_play($('.iv-rotator .select li:eq(0)'));
	
	$('html').everyTime(10000, function() {
		rand_d = Math.floor(4*Math.random());
		r_play($('.iv-rotator .select li:eq('+rand_d+')'));
	});
	
	$('.iv-rotator .select li').click(function(){
		r_play($(this));
	});
	
});

function r_play(elem)
{
	var index = $('.select li').index(elem);
	var elem_l = $('.screen li:eq('+index+')');
	$('.screen li .text').hide();
	$('.screen li').hide();
	$(elem_l).fadeIn('slow');
	showTextBlock($('.screen li:eq('+index+') div'));
}
function showTextBlock(elem)
{
	
	$(elem).slideDown('slow');
}

