<!-- hide  scripts from old browsers

/******************************************************************************
* swsw_rotate.js                                                              *
*                                                                             *
* Copyright 2003 South West Software Limited.                                 *
* Web address: http://www.swsw.co.uk                                          *
* Last update: March 31 2003.                                                 *
*                                                                             *
* Description: This script handles the random display of pictures.            *
*                                                                             *
******************************************************************************/

function mfPictureChange()
{

  if (document.images)
  {

    randnum = Math.random() * 9 ;	
    if (randnum > 8) { image_str = "graphics/pic9.jpg" }
    else if (randnum >  7) { image_str = "graphics/pic8.jpg" }
    else if (randnum >  6) { image_str = "graphics/pic7.jpg" }
    else if (randnum >  5) { image_str = "graphics/pic6.jpg" }
    else if (randnum >  4) { image_str = "graphics/pic5.jpg" }
    else if (randnum >  3) { image_str = "graphics/pic4.jpg" }
    else if (randnum >  2) { image_str = "graphics/pic3.jpg" }
    else if (randnum >  1) { image_str = "graphics/pic2.jpg" }
    else { image_str = "graphics/pic1.jpg" };

    image_name = "business" ;
    document[image_name].src = image_str ;

  }

}

setInterval("mfPictureChange()", 5000);

//-->

