// JavaScript Document

var mess = new Array('Inspired design that can take you places.','We&rsquo;re graphic, print, and web designer(d)s!','Graphic, print and web designers from a different galaxy.','Designers programmed to make you look good.','Commence official interplanetary design.','Web and graphic design by rocket to the moon.','Graphic design and freeze-dried ice cream: a perfect combination.','Leave your design cares below, pull the switch, let&rsquo;s go!');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    
