<!--

//Javascript Created by Computerhope http://www.computerhope.com
//store the quotations in arrays

images = new Array(7);

images[0] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-01.jpg'); background-repeat: no-repeat; background-position: right;\">";
images[1] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-02.png'); background-repeat: no-repeat; background-position: right;\">";
images[2] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-03.jpg'); background-repeat: no-repeat; background-position: right;\">";
images[3] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-04.jpg'); background-repeat: no-repeat; background-position: right;\">";
images[4] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-05.jpg'); background-repeat: no-repeat; background-position: right;\">";
images[5] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-06.jpg'); background-repeat: no-repeat; background-position: right;\">";
images[6] = "<div id=\"banner\" style=\"background-image: url('./images/header/monster-07.jpg'); background-repeat: no-repeat; background-position: right;\">";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// --></script>