<!--
// Image array
var img1 = "http://www.searchlogic.com.au/images/rotation/01.jpg"
var img2 = "http://www.searchlogic.com.au/images/rotation/02.jpg"
var img3 = "http://www.searchlogic.com.au/images/rotation/03.jpg"
var img4 = "http://www.searchlogic.com.au/images/rotation/04.jpg"
var img5 = "http://www.searchlogic.com.au/images/rotation/05.jpg"

//get a random number...
var randomize = Math.round(Math.random()*5)

//select image based on random number
if (randomize == 1){
newimg = img1
}else if (randomize == 2){
newimg = img2
}else if (randomize == 3){
newimg = img3
}else if (randomize == 4){
newimg = img4
}else{
newimg = img5
}

//output text/image
document.write('<img src="'+newimg+'" alt="Search engine placement that works" width="554" height="204">')

//-->