var adblockPhotos=new Array()
adblockPhotos[0]='<a href="photography"><img src="../images/Site/IMG_1641-002.jpg" width="250" height="170" class="imgBorder" alt="Photography by Nick Mabe"></a>'
adblockPhotos[1]='<a href="photography"><img src="../images/Site/IMG_0502.JPG" width="250" height="170" class="imgBorder" alt="Photography by Nick Mabe"></a>'
adblockPhotos[2]='<a href="photography"><img src="../images/Site/CanonPyon-Hfd.jpg" width="250" height="170" class="imgBorder" alt="Photography by Nick Mabe"></a>'
adblockPhotos[3]='<a href="photography"><img src="../images/Site/IMG_1626-250-170-.jpg" width="250" height="170" class="imgBorder" alt="Photography by Nick Mabe"></a>'
adblockPhotos[4]='<a href="photography"><img src="../images/Site/IMG_1151-250-170.jpg" width="250" height="170" class="imgBorder" alt="Photography by Nick Mabe"></a>'
adblockPhotos[5]='<a href="photography"><img src="../images/Site/LeftBank-Chair250-170.jpg" width="250" height="170" class="imgBorder" alt="Photography by Nick Mabe"></a>'


function randomorderPhotos(targetarray, spacing) {
  var randomorderPhotos=new Array()
  var the_one
  var z=3
  for (i=0;i<targetarray.length;i++)
  randomorderPhotos[i]=i

  while (z<targetarray.length) {
    the_one=Math.floor(Math.random()*targetarray.length)
    if (targetarray[the_one]!="_selected!"){
      document.write(targetarray[the_one]+spacing)
      targetarray[the_one]="_selected!"
      z++
    }
  }
}