function animatePhoto()
{
	function showInactive()
	{
		$(".gallery .inactive").animate({opacity:'1'},'slow').removeClass("inactive").addClass("x");
		$(".gallery .active").removeClass("active").addClass("inactive").css({'position':'absolute','top':'0px','left':'0px'});
		$(".gallery .x").removeClass("x").addClass("active").css({'position':'relative'});
	}
	function hideActive()
	{
		$(".gallery .active").animate({opacity:'0.01'},'slow',null,showInactive);
	}
	if(counter>=aImages.length)	counter = 0;
//	$(".gallery .inactive").load( "/ajax/getPhoto.php" , {i:counter, file:aImages[i:counter]} , hideActive() );
	$(".gallery .inactive").html( '<img src="'+aImages[counter]+'" alt="'+aTitles[counter]+'" title="'+aTitles[counter]+'" \/>' );
	hideActive();
	counter++;
}
