// JavaScript Document

var mess = new Array('<img src="images/tiger_logo_01.gif" alt="Tigress One" />',
					 '<img src="images/tiger_logo_02.gif" alt="Tigress One" />',
					 '<img src="images/tiger_logo_03.gif" alt="Tigress One" />',
					 '<img src="images/tiger_logo_04.gif" alt="Tigress One" />',
					 '<img src="images/tiger_logo_05.gif" alt="Tigress One" />',
					 '<img src="images/tiger_logo_06.gif" alt="Tigress One" />',
					 '<img src="images/tiger_logo_07.gif" alt="Tigress One" />');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    