  function imageCall(position) {
	// Set up the image files to be used.
	var randomImages = new Array() // do not change this
	// To add more image files, continue with the
	// pattern below, adding to the array.

	switch (position) {
		case 'one':
				randomImages[0] = 'fileadmin/templates/swagman/images_random_tagline/ausbuy-tag-1.png'
				randomImages[1] = 'fileadmin/templates/swagman/images_random_tagline/ausbuy-tag-2.png'
				randomImages[2] = 'fileadmin/templates/swagman/images_random_tagline/ausbuy-tag-3.png'
				break;
		}
	// do not edit anything below this line
	var j = 0
	var p = randomImages.length;
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = randomImages[i]
	}
	var whichImage = Math.round(Math.random()*(p-1));
	document.write('<img src="'+randomImages[whichImage]+'">');
  }