var mess = new Array('We strive harder ','Fluent in linguistics', 'Faster solutions', 'Best professionals for the best', 'Local solutions, global partners');
var max = mess.length;
var num = Math.floor((Math.random() * max));
document.writeln(mess[num]);
                    