﻿$( initSlideShow );

var intervalBetweenPicture = 6000;
var speedDisappearance = 2000;

// подготовка слайдшоу к работе 
function initSlideShow()
{
	if( !imagesLoaded() )
	{
		window.setTimeout( 'initSlideShow()', 500 );
		return;
	}
	$('#slideBlock li:first').insertAfter( $('#slideBlock li:last') );
	$('#slideBlock li:last a img').show()
	window.setInterval( 'slideAnimation()', intervalBetweenPicture );
}


// Возвращает true, если все картинки загружены
function imagesLoaded()
{
	var images = $('img');
	for( i = 0; i < images.length; i++ )
		if( images[i].src !='' && !images[i].complete )
			return false;

	return true;
}

	
// меняем местами изображения
function slideAnimation()
{	
	$('#slideBlock li:last a img').fadeOut( speedDisappearance );
	$('#slideBlock li:first').insertAfter( $('#slideBlock li:last') );
	$('#slideBlock li:last a img').fadeIn( speedDisappearance );
}
