// JavaScript Document

<!-- random Longthorn img -->
<!--
//store the quotations in arrays
images = new Array(3);
images[0] = "<img src='assets/images/longthorn01.png' alt='Longthorn: Ink and pixels.'>";
images[1] = "<img src='assets/images/longthorn02.png' alt='Longthorn: Creating in digital and analogue.'>";
images[2] = "<img src='assets/images/longthorn03.png' alt='Longthorn: In print, on screen and everything in between'>";
index = Math.floor(Math.random() * images.length);
document.write(images[index]);
//done
// -->
