$(document).ready(function(){

$('#top_slide img:first').addClass("show");
 theRotator();
});




function theRotator() {
     

	$("#top_slide img").css({opacity: 0.0});
 
	//  показываем первую
	$('#top_slide img:first').css({opacity: 1.0});

    setInterval('rotate()',5000);
}
 
function rotate() {	
	// Берем первую
	var current = ($('#top_slide img.show')?  $('#top_slide img.show') : $('#top_slide img:first'));
 
	// следующая 
	var next = ((current.next().length) ? ((current.next().hasClass('show')) ? $('#top_slide img:first') :current.next()) : $('#top_slide img:first'));	
 	
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);
 
	// Прячем текущую картинку
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
};

