//Random Quote Generator
//By Yata Tyranno

//quote array
quoteList = new Array();

quoteList[0] = "HYUNDAI, Drive your way";
quoteList[1] = "PONTIAC, Designed for Action";
quoteList[2] = "CHEVROLET, Heartbeat of America";
quoteList[3] = "KIA, Power to Surprise";
quoteList[4] = "Have you driven a FORD lately?";
quoteList[5] = "Like a MERCURY!!!!";
quoteList[6] = "You're ready for an AUDI!!!";
quoteList[7] = "VOLVO, For Life";
quoteList[8] = "Welcome to Car Discussion HQ";
quoteList[9] = "LINCOLN, What a Luxury Car Should be";
quoteList[10] = "SATURN, A Different kind of car from Different kind of company";
quoteList[11] = "DODGE, Grab Life by the Horn";
quoteList[12] = "Gentleman, START Your ENGINES";
quoteList[13] = "SAAB, Born from Jets";
quoteList[14] = "We Build Excitement!, PONTIAC";
quoteList[15] = "DAEWOO, Simply.... More";
quoteList[16] = "BMW, The Ultimate Driving Machine";
quoteList[17] = "FORD, Bold Moves";
quoteList[18] = "INFINITI, Accelerating the Future";
quoteList[19] = "SUBARU, Think, Feel, Drive";
quoteList[20] = "FORD, Built for the Road Ahead";
quoteList[21] = "ALFA ROMEO, Beauty is Not Enough";
quoteList[22] = "Driven by Passion, FIAT";
quoteList[23] = "HONDA, The Power of Dreams";
quoteList[24] = "ACURA, The True Definition of Luxury, Yours";
quoteList[25] = "MERCEDES BENZ, Unlike Any Other";
quoteList[26] = "BMW, Sheer Driving Pleasure";
quoteList[27] = "JAGUAR, Born to Perform";
quoteList[28] = "AUDI, Keeping Ahead through Technology";
quoteList[29] = "VOLKSWAGEN, Drivers Wanted";
quoteList[30] = "PEUGEOT, Live the Pleasure";
quoteList[31] = "JEEP, There is only One";
quoteList[32] = "TOYOTA, I Love What You Do For Me";
quoteList[33] = "PONTIAC, We ARE Driving Excitement";
quoteList[34] = "ROVER, Class of its Own";
quoteList[35] = "LAND ROVER, Go Beyond";
quoteList[36] = "CHEVROLET, An American Revolution";
quoteList[37] = "HYUNDAI, Driving is Believing";
quoteList[38] = "HYUNDAI, Always There For You";
quoteList[39] = "NISSAN, Shift Expectations";
quoteList[40] = "CHRYSLER, Inspiration Come Standard";
quoteList[41] = "KIA, Make Every Mile Count";
quoteList[42] = "LEXUS, The Relentless Pursuit of Perfection";
quoteList[43] = "PORSCHE, There is No Substitute";
quoteList[44] = "SKODA, Simply Clever";
quoteList[45] = "This is not your father's OLDSMOBILE";
quoteList[46] = "CADILLAC, Creating a Higher Standard";
quoteList[47] = "BUICK, Spirit of American Style";
quoteList[48] = "Imagine Yourself in a MERCURY Now";
quoteList[49] = "SAAB, Welcome to the State of Independence";
quoteList[50] = "SMART CAR, SMART, Open Your Mind";
quoteList[51] = "HUMMER, Like Nothing Else";
quoteList[52] = "HOLDEN Go";
quoteList[53] = "SEAT, Auto Emocion";
quoteList[54] = "SATURN, Like Always, Like Never Before";
quoteList[55] = "CITROEN, Just Imagine what Citroen can do for you";
quoteList[56] = "Everyone Dreams of an AUDI";
quoteList[57] = "SUBARU, Driven by What's Inside";
quoteList[58] = "FORD, Designed for Living, Engineered to Last";
quoteList[59] = "MERCEDES BENZ, The Future of the Automobile";
quoteList[60] = "MERCEDES BENZ, Engineered to Move the Human Spirit";
quoteList[61] = "PROTO MOTORS, Design, Dream, Development";
quoteList[62] = "SSANGYONG, Silky Driving";
quoteList[63] = "SAMSUNG MOTORS, Look and Feel";
quoteList[64] = "Like a good neighbor, STATE FARM is There";
quoteList[65] = "You're in good hands with ALLSTATE";
quoteList[66] = "Get Met, It Pays. METLIFE";
quoteList[67] = "GEICO, Fifteen Minutes could save you fifteen percent or more on Car Insurance.";
quoteList[68] = "SSANGYONG, New Mind, New Start, New Challenge";
quoteList[69] = "SAMSUNG MOTORS, Never Compromise Quality";
quoteList[70] = "HYUNDAI, Smart Move!!!!";
quoteList[71] = "IHOP, Come Hungry, Leave Happy!!";
quoteList[72] = "Autobots, Roll On.";
quoteList[73] = "JEEP, Have Fun Out There";
quoteList[74] = "PONTIAC, Fuel for the Soul";
quoteList[75] = "BUICK, Drive Beautiful";
quoteList[76] = "CHEVROLET, An American Revolution";
quoteList[77] = "HYUNDAI, Rethink Everything";
quoteList[78] = "GENESIS, The Dynamic Luxury";
quoteList[79] = "HYUNDAI, Cars that makes sense";
quoteList[80] = "PONTIAC, is CAR";
quoteList[81] = "FORD, Quality is Job 1";

//randomization for the quotes
var now = new Date();
var secs = now.getSeconds();
var raw_random_number = Math.random(secs);
var random_number = Math.round(raw_random_number * (quoteList.length));

if (random_number == quoteList.length){random_number = 0}


//set quote variable for later on
var quote = quoteList[random_number];
