// JavaScript Document

function makeArray(n) {
this.length = n;
for (var i=1; i<=n; i++) {
this[i] = ""; 
}
return this;
}
var i;
function makeArray(n) {
this.length = n;
for (var j=1; j<=n; j++) {
this[j] = ""; 
}
return this;
}
var j;

function imagealeatoire1() {
i = Math.floor(6 * Math.random() + 1);
return image[i];
}
image = new makeArray(6);
image[1]="http://www.hotelclariongatineauottawa.com/images/clarion1.swf";
image[2]="http://www.hotelclariongatineauottawa.com/images/clarion2.swf";
image[3]="http://www.hotelclariongatineauottawa.com/images/clarion3.swf";
image[4]="http://www.hotelclariongatineauottawa.com/images/clarion4.swf";
image[5]="http://www.hotelclariongatineauottawa.com/images/clarion5.swf";
image[6]="http://www.hotelclariongatineauottawa.com/images/clarion6.swf";


