/*  image_cycle_prd.js  */

	NumberOfImagesToRotate = 10;	
	FirstPart = '<img src="/global/images/en/corp/diversity/pride/swapImage';
	LastPart = '.jpg" height="258" width="530" border="0" alt="employee testimonial" name="swapImage">';

/* random number that starts with one  - goes from 1 to n */

function select()	{
  var index1=Math.floor(Math.random() * NumberOfImagesToRotate)+1;
  document.write(FirstPart + index1 + LastPart);
  }
