<!--
var pic, alt;
pic = new Array;
pic[0] = "http://www.studiohphotography.net/images/random/image_000.jpg";
pic[1] = "http://www.studiohphotography.net/images/random/image_001.jpg";
pic[2] = "http://www.studiohphotography.net/images/random/image_002.jpg";
pic[3] = "http://www.studiohphotography.net/images/random/image_003.jpg";
pic[4] = "http://www.studiohphotography.net/images/random/image_004.jpg";
pic[5] = "http://www.studiohphotography.net/images/random/image_005.jpg";
pic[6] = "http://www.studiohphotography.net/images/random/image_006.jpg";
pic[7] = "http://www.studiohphotography.net/images/random/image_007.jpg";
pic[8] = "http://www.studiohphotography.net/images/random/image_008.jpg";
pic[9] = "http://www.studiohphotography.net/images/random/image_009.jpg";


alt = new Array;
alt[0] = "";
alt[1] = "";
alt[2] = ""; 
alt[3] = "";
alt[4] = "";
alt[5] = ""; 
alt[6] = "";
alt[7] = "";
alt[8] = ""; 
alt[9] = "";

var now = new Date();
var seed = now.getTime() % 0xffffffff;

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return ( seed >> 16 ) % n;
} 

//-->
