// *****************************************************************************
//      LCRA Homepage Image Rotation script
//      homepage_cobranding_image_rotate.js
//
//   
//
//   
//
// *****************************************************************************
//
//
// *****************************************************************************
//
// Version   Date        By               Description
// =======   ====        ===============  ===========
//   1.0     2006.10.25  PGRIFFIN         Initial release
//   1.0     2007.105.22 DREYES           cloned homepage_image_rotat.js for cobranding images

//
// *****************************************************************************


//******************************************************************************
//------------------------------------------------------------------------------
// Images section
//------------------------------------------------------------------------------
//******************************************************************************


    var images = new Array(6);

   images[0] = "<img src='/library/media/public/images/cobranding/fri_night_lights_web.jpg' height='250' width='700' alt='Home Page Header Image' title='we share your concern for the future of texas' name='' href='' caption='' align='middle' /> ";
   images[1] = "<img src='/library/media/public/images/cobranding/blueplate_specialcolor_web.jpg' height='250' width='700' alt='Home Page Header Image' title='we share your concern for the future of texas' name='' href='' caption='' align='middle' /> ";
   images[2] = "<img src='/library/media/public/images/cobranding/elbow_grease_color_ad_web.jpg' height='250' width='700' alt='Home Page Header Image' title='we share your concern for the future of texas' name='' href='' caption='' align='middle' /> ";
   images[3] = "<img src='/library/media/public/images/cobranding/midofroad_web.jpg' height='250' width='700' alt='Home Page Header Image' title='we share your concern for the future of texas' name='' href='' caption='' align='middle' /> ";
   images[4] = "<img src='/library/media/public/images/cobranding/mother_nature_web.jpg' height='250' width='700' alt='Home Page Header Image' title='we share your concern for the future of texas' name='' href='' caption='' align='middle' /> ";
   images[5] = "<img src='/library/media/public/images/cobranding/new-cobranding-banner-2.jpg' height='250' width='700' alt='Home Page Header Image' title='we share your concern for the future of texas' name='' href='' caption='' align='middle' /> ";

   index = Math.floor(Math.random() * images.length);

   document.write(images[index]);

