var images = ['sport1.jpg','sport2.jpg','sport3.jpg'];
var img = 0;

function fadeIt()
{
	if(img < images.length)
	{
		$('#sports-images img').fadeOut('slow', function()
		{
			$('#sports-images').html('<img src="images/'+images[img]+'" width="300" height="250" />');
			$('#sports-images img').fadeTo('slow', 1, function(){});
			img++;
		})
	}
	else
	{
		img = 0;
		$('#sports-images img').fadeOut('slow', function()
		{
			$('#sports-images').html('<img src="images/'+images[img]+'" width="300" height="250" />');
			$('#sports-images img').fadeTo('slow', 1, function(){});
			img++;
		})
	}
	setTimeout(fadeIt, 6000);
}


$(document).ready(function () 
{
	$('#sports-images').html('<img src="images/'+images[img]+'" width="300" height="250" />');
	$('#sports-images img').fadeTo('slow', 1, function(){});
	img++;
	setTimeout(fadeIt, 6000);	
});
