<!--
// 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 = 60/image.length
function ranindex(size) {
  currentdate = new Date()
  core = currentdate.getSeconds()
  core = Math.floor(core/size)
    return(core)
}


strmsg = new StringArray(10)
strmsg[0] = 'Brambles Mission is to be the world\'s leading provider of innovative business solutions in support services'
strmsg[1] = 'Brambles began as a butchering business established in 1875 by 18-year-old Walter Bramble in a small country town in New South Wales, Australia.'
strmsg[2] = 'Brambles became a publicly listed company on 24 March 1954, when it listed on the Australian Stock Exchange as W.E.Bramble & Sons (Transport) Company Limited.'
strmsg[3] = 'CHEP is an acronym for Commonwealth Handling Equipment Pool which Brambles acquired from the Australian Government in 1958. The pool included cranes, forklift trucks and standardised pallets left behind by US forces at the end of World War II.'
strmsg[4] = 'CHEP pallets are painted blue so they can be easily identified. Because they are regularly repaired, they have an operational lifespan of 20 years.'
strmsg[5] = 'CHEP seeks to minimise waste by recycling scrap pallets, containers and crates for animal bedding, mulch or fuel.'
strmsg[6] = 'The CHEP pallet pooling system of re-using and recycling pallets significantly reduces our customersī use of resources and waste - by an estimated seven million tonnes of landfill a year in the USA alone.'
strmsg[7] = 'We estimate that over 16 million trees are saved each year worldwide by the use of the CHEP pallet pooling system.'
strmsg[8] = 'Recallīs Secure Destruction Services shred and send for recycling about 200,000 tonnes of paper each year, the equivalent of three million trees.'
strmsg[9] = 'In Recallīs īmega centreī in Singapore, boxes of documents are stored up to a height of 43 metres and accessed by cranes.'

var txtsize = 60/strmsg.length

//-->
