 


function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

image = new StringArray(6)
image[0] = 'http://www.sitepublish.com/screen/1.jpg'
image[1] = 'http://www.sitepublish.com/screen/2.jpg'
image[2] = 'http://www.sitepublish.com/screen/3.jpg'
image[3] = 'http://www.sitepublish.com/screen/4.jpg'
image[4] = 'http://www.sitepublish.com/screen/5.jpg'
image[5] = 'http://www.sitepublish.com/screen/6.jpg'

 
text = new StringArray(0)
text[0] = 'There is nothing magical or exotic about psychotherapy.  It succeeds through processes as old and familiar as one person talking their problems over with another.'
text[1] = 'I\'m not even sure if my patients benefit when I strive to do great work: it takes my attention off of them and onto myself...Great therapy, like love, only happens when you don\'t seek it.'
text[2] = 'We all are vulnerable to the illusion that since we\'ve been surviving many apparent close calls, then that must mean that actually we\'ve been safe all along. '


var core = 0

function ranimage() {
  var string = ""
  core = Math.floor(Math.random()*image.length)
  string = "<a href='http://www.sitepublish.com/html/portfolio.html'><img src='"+image[core]+"' width=100 border=0></a>"
  return(string)
}






