// JavaScript Document
// created by pat@green-shoots.org
// www.green-shoots.org

function picChanger()
{
  currImg = currImg + 1;
  if(currImg >= imgs.length)
  {
	  currImg = 0;
  }
  $('<img />').attr({'width': '84',
					'height':'57',
					'src': '/image/kGallery/'+imgs[currImg]}).load(function()
  {
	  $('#picBoxTrans').html( $(this) );
	  /* now fade out the foreground image */
	  $('#picBox').fadeOut(1000,function()
	  {
		  /* once faded out transfer the image to the foreground and then fade it back in ready to preload the next one */
		  $('#picBox').html($('#picBoxTrans').html());
		  $('#picBox').fadeIn('fast');
	  });
	  
	  setTimeout(function(){
	  picChanger();
	},5000);
  });
}
