
<!--


function swapPicture()
{
	
  if (document.images)
  {
	
    var nextImage=cImage+1;
    if (nextImage>=numImages)
		nextImage=0;
      
      
 		var target=0;
		if (document.images.curImage)
			target=document.images.curImage;
		if (document.all && document.getElementById("curImage"))
			target=document.getElementById("curImage");
  
    
		if (target)
		{
			target.src=dimages[nextImage].src;
if (dimages[nextImage].width>350)
           target.width = 350;
else
           target.width = dimages[nextImage].width;
if (dimages[nextImage].height>350)
           target.height = 350;
else
           target.height = dimages[nextImage].height;

			cImage=nextImage;
		}
		setTimeout("swapPicture()", 3000);
 
  }
 
}
//-->



