﻿// Matthew Betmaleck Studio
// Home Page Image Randomizer

<!--
function rand_number(n)
{
var x;
x=Math.round(Math.random()*100);
x%=n;
return x;
}
function randomimage()
{
var img = new Array();
img[0]='<img src="_img/home/home1.jpg" width="700" height="365" />';
img[1]='<img src="_img/home/home2.jpg" width="700" height="365" />';
img[2]='<img src="_img/home/home3.jpg" width="700" height="365" />';
img[3]='<img src="_img/home/home4.jpg" width="700" height="365" />';
img[4]='<img src="_img/home/home5.jpg" width="700" height="365" />';
img[5]='<img src="_img/home/home6.jpg" width="700" height="365" />';
img[6]='<img src="_img/home/home7.jpg" width="700" height="365" />';
img[7]='<img src="_img/home/home8.jpg" width="700" height="365" />';
img[8]='<img src="_img/home/home9.jpg" width="700" height="365" />';
img[9]='<img src="_img/home/home10.jpg" width="700" height="365" />';
img[10]='<img src="_img/home/home11.jpg" width="700" height="365" />';
img[11]='<img src="_img/home/home12.jpg" width="700" height="365" />';
img[12]='<img src="_img/home/home13.jpg" width="700" height="365" />';
img[13]='<img src="_img/home/home14.jpg" width="700" height="365" />';
img[14]='<img src="_img/home/home15.jpg" width="700" height="365" />';


var n=rand_number(15); 
document.write(img[n]);
}
//-->