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/gal2.jpg";
rnd_alt[0]="Galerie des montres";
rnd_txt[0]="Recherchez la montre de vos r&ecirc;ves.";

rnd_url[1]="../tec/fs_lex.htm";
rnd_pics[1]="../../../pics/ban/lex1.jpg";
rnd_alt[1]="Lexique du G&eacute;nie Horloger";
rnd_txt[1]="Une r&eacute;f&eacute;rence indispensable.";

rnd_url[2]="../gal/fs_antima.htm";
rnd_pics[2]="../../../pics/ban/loupe2.jpg";
rnd_alt[2]="Sous la loupe";
rnd_txt[2]="Pour mieux conna&ecirc;tre les marques";

rnd_url[3]="../tec/fs_art.htm";
rnd_pics[3]="../../../pics/ban/art2.jpg";
rnd_alt[3]="Artisans horlogers";
rnd_txt[3]="Artisans horlogers intemporels";

rnd_url[4]="../tec/fs.htm";
rnd_pics[4]="../../../pics/ban/techn2.jpg";
rnd_alt[4]="Technique";
rnd_txt[4]="Experts, fonctionnement, artisans...";

rnd_url[5]="../cnt/fs.htm";
rnd_pics[5]="../../../pics/ban/concours.jpg";
rnd_alt[5]="Concours gratuit";
rnd_txt[5]="Superbes montres &agrave; gagner";

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='Mystere...';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>" );
   }

