$(document).ready(function() {
	//prepphoto();
});
	var allphotos = new Array();
	var totalphotos = 0;
	var targetphoto = 0;
	var photo;
	var parent;

	function prepphoto()
	{
		photo = $('#homephotohelper img');
		parent = photo.parent();
		parent.empty().append('<img src="/images/loader.gif" alt="Loading" width="16" height="16" style="display:block; margin:180px auto 0 auto;" />');
	}

	function loadphoto()
	{
		var img = new Image();
		$(img).hide().load(function () {
			var image = $(this);
			parent.fadeOut('fast', function() {
				image.show();
				$(this).empty().append(image).fadeIn('slow',function()
				{
					if(targetphoto<allphotos.length-1)
					{
						targetphoto++;
					}
					else
					{
						targetphoto = 0;
					}
					setTimeout("loadphoto()",3500);
				});
			});
		}).attr('src',allphotos[targetphoto]);
	}
	
	$.ajax({
		type: "GET",
		url: "/themes/hackercraft/js/galleryajax.html",
		success: function(data)
		{
			allphotos = data.split('|');
			totalphotos = allphotos.length;
			loadphoto();
		}
	});
