function Array() { return this; }


var rnd_url = new Array();
var rnd_pics = new Array();
var rnd_alt = new Array();
var rnd_txt = new Array();

rnd_url[0]="../gal/fs.htm";
rnd_pics[0]="../../../pics/ban/gal3.jpg";
rnd_alt[0]="Watches Gallery";
rnd_txt[0]="Look for your dream watch.";

rnd_url[1]="../tec/fs_lex.htm";
rnd_pics[1]="../../../pics/ban/lex3.jpg";
rnd_alt[1]="Lexique du G&eacute;nie Horloger";
rnd_txt[1]="The necessary reference.";

rnd_url[2]="../gal/fs_antima.htm";
rnd_pics[2]="../../../pics/ban/loupe3.jpg";
rnd_alt[2]="Under the magnifying glass";
rnd_txt[2]="Learn more about this month's brand.";

rnd_url[3]="../tec/fs_craft.htm";
rnd_pics[3]="../../../pics/ban/art3.jpg";
rnd_alt[3]="Watchmaker craftsmen";
rnd_txt[3]="Timeless watchmakers...";

rnd_url[4]="../tec/fs.htm";
rnd_pics[4]="../../../pics/ban/techn3.jpg";
rnd_alt[4]="Technique or technology";
rnd_txt[4]="Watchmakers, experts, functioning...";

rnd_url[5]="../cnt/fs.htm";
rnd_pics[5]="../../../pics/ban/concours3.jpg";
rnd_alt[5]="Free contest";
rnd_txt[5]="It's my lucky day ;-)";

var num_pics = 6;

function myst_lnk()
   {
   var now = new Date;
   var secs = now.getSeconds() % num_pics;
   document.write( "<A HREF='" + rnd_url[secs] + "' TARGET='_parent' " +
       		                  "onmouseover=\"window.status='Mystery...';return true;\">" +
	 	                        "<IMG SRC='../../../pics/but/myst.gif' ALIGN='TOP' " +
	 	  											"NATURALSIZEFLAG='3' BORDER='0'></A>" );
   }

function rnd_lnk()
   {
   var now2 = new Date;
   var secs = ( now2.getSeconds() +2 ) % num_pics;
   document.write( "<TABLE WIDTH='100%' BORDER='0' CELLSPACING='0' " +
	 	                        "CELLPADDING='0' ><TR><TD WIDTH='100%'><BASEFONT SIZE=4>" +
	 	                        "&nbsp;</TD></TR><TR><TD WIDTH='100%'>" +
	 	                        "<A HREF='" + rnd_url[secs] + "' TARGET='_parent' " +
       		                  "onmouseover=\"window.status='" + rnd_alt[secs] + "'; " +
	 	                        "return true;\"><IMG SRC='" + rnd_pics[secs] + "' " +
	 	                        "ALIGN='TOP' NATURALSIZEFLAG='3' BORDER='0'>" + 
	 	                         "</A></TD></TR><TR><TD WIDTH='100%' ALIGN='CENTER'>" +
 		                        "<BASEFONT SIZE=2><B>" + rnd_txt[secs] + "</B></TD></TR></TABLE>" );
   }
