function galleryRotate( )
{
	var tmp = getImages( );
	showImage( tmp[ (++galleryRotatePos) % tmp.length ].id );
}

galleryRotateTimer = setInterval( galleryRotate, 5000 );
