function next_image()
{
	$("#project_slide img, #project_text").fadeOut("fast", function()
		{
			$("#project_slide").html("<a href=\'" + images[counter%images.length][1]  + "\'><img style=\'display:none;\' src=\'' . HTTP_ROOT . 'data/imagecache/" + images[counter%images.length][0] + "\'></a>");				
			$("#project_text").html( images[ counter%images.length ][ 2 ] );
			$("#project_slide img, #project_text").fadeIn("fast");						
		}
	);
	counter++;
	setTimeout("next_image()", 5000);
}

window.onload = function()
{
	if( images.length > 0 )	
		next_image();
}