<!--
<!--
// The Array Function 
function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}
// This is where the array of text/siteimages/sounds is created.
images = new makeArray(11);

images[0] = "  <a href='press_room_reviews.asp'><img src='/image/splash/rotate_01.gif' border='0'></a> ";

images[1] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_02.gif' border='0'></a> ";

images[2] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_03.gif' border='0'></a> ";

images[3] = "     <a href='press_room_reviews.asp'><img src='/image/splash/rotate_04.gif' border='0'></a>   ";

images[4] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_05.gif' border='0'></a>   ";

images[5] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_06.gif' border='0'></a>   ";

images[6] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_07.gif' border='0'></a>   ";

images[7] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_08.gif' border='0'></a>   ";

images[8] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_09.gif' border='0'></a>   ";

images[9] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_10.gif' border='0'></a>   ";

images[10] = "   <a href='press_room_reviews.asp'><img src='/image/splash/rotate_11.gif' border='0'></a>   ";

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
} 
var now = new Date()
var seed = now.getTime() % 0xffffffff
// -->