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