<!--
// Random Images and Text
var currentdate = 0
var core = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

image = new StringArray(6)
image[0] = 'banner_1_800x100.jpg'
image[1] = 'banner_2_800x100.jpg'
image[2] = 'banner_3_800x100.jpg'
image[3] = 'banner_4_800x100.jpg'
image[4] = 'banner_5_800x100.jpg'
image[5] = 'banner_6_800x100.jpg'

var imgsize = 100/image.length
function ranindex(size) {
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/size)
    return(core)
}


strmsg = new StringArray(3)
strmsg[0] = '30 days sales cycle on production'
strmsg[1] = 'AusTex now a junior Oil & Gas company'
strmsg[2] = 'Kansas development plan underway'
strmsg[3] = 'Oklahoma development of dual Oil and Gas zones ongoing'
strmsg[4] = 'AusTex operating on 7 project in Oklahoma'
strmsg[5] = 'Kansas and Oklahoma footprint expanding'

var txtsize = 100/strmsg.length

//-->