// JavaScript Document

var mess = new Array('<a href="pages/collections_01.html"><img src="images/splash_01.jpg" alt="Tigress One" /></a>',
					 '<a href="pages/collections_01.html"><img src="images/splash_02.jpg" alt="Tigress One" /></a>',
					 '<a href="pages/collections_01.html"><img src="images/splash_03.jpg" alt="Tigress One" /></a>',
					 '<a href="pages/collections_01.html"><img src="images/splash_04.jpg" alt="Tigress One" /></a>');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    