// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Orange is used to designate warning and to point out dangerous equipment such as electrical wires and hot pipes.";
Quotation[1] = "In marketing, orange is used for packaging because it has a \"freshness\" appeal (e.g., bread wrappers).";
Quotation[2] = "It is found in cafeterias because it has been proven to inspire higher sales.";
Quotation[3] = "In a study room it gives energy and creative motivation.";
Quotation[4] = "Orange is found in apricots, mangoes, oranges, peaches, carrots, pumpkins, yams, and saffron.";
Quotation[5] = "In the early Christian church, orange was a symbol of glory and fruits of the earth.";
Quotation[6] = "The word \"Orange\" developed from the Sanskrit word \"Naranga\" which comes from the Tamil naru which means \"Fragrant.\"";
Quotation[7] = "In education, engineering is represented by Orange.";
Quotation[8] = "Oranges are an excellent source of Vitamin C and contain some Vitamin A. Once cut or squeezed; however, the vitamin C quickly begins to dissipate.";
Quotation[9] = "You will have to eat seven cups of cornflakes to get the same amount to fiber you would get from one medium orange!";
Quotation[10] = "After chocolate and vanilla, orange is the world's favorite flavor.";
Quotation[11] = "Christopher Columbus brought the first orange seeds and seedlings to the New World on his second voyage in 1493.";
Quotation[12] = "Most, but not all, Orange tabby cats are male. In general, veterinarians agree that it is a ratio of approximately 80/20 in favor of Orange tabby cats being male.";
Quotation[13] = "Gemstone Healing: Orange is the color of joy and creativity and promotes a general sense of wellness.";
Quotation[14] = "Gemstone Healing: Orange provides emotional energy that you can give to others, including compassion, passion and genuine warmth. ";
Quotation[15] = "Gemstone Healing: Spiritually: Creativity, harmony, emotional balance, passion, sexuality, freedom and expression of emotions.";
Quotation[16] = "The colour and material used in Elizabethan clothing was extremely important. People who could wear the color Orange was dictated by English Law! These were called the Sumptuary Laws.";
Quotation[17] = "The Elizbethian Era: The symbolic meaning of the color orange was a symbol of courage";
Quotation[18] = "The Elizbethian Era: Cheap dyes were used to produce the colors orange and russet";
Quotation[19] = "The Elizbethian Era: Cheap dyes, made from the madder root, were used to produce the color orange";
Quotation[20] = "The Elizbethian Era: The Madder root produced the whole spectrum of red based colors including orange, russet and brown.";
Quotation[21] = "Orange is a secondary colour. It is Red and Yellow mixed.";
Quotation[22] = "Energy, warmth, contentment, fruitfulness, strength, security, sensuality, abundance.";
Quotation[23] = "Orange is the colour of Jalebi. Yum, yum!";
Quotation[24] = "The color orange is generally experienced as the warmest color.";
Quotation[25] = "Interestingly, the color orange also has a spiritual connection; it is a holy color in India and Nepal.";
Quotation[26] = "The opposite of Orange is Purple!";
Quotation[27] = "The national flag of India was adopted in 1947. The orange color signifies courage and sacrifice by the people who laid down their lives for the country, white symbolizes peace and green stands for faith and prosperity.";
Quotation[28] = "Hinduism: Saffron and orange colors are often associated with festivity, happiness, joyousness and optimism.";
Quotation[29] = "It is said to increase the craving for food.";
Quotation[30] = "Some orange gemstones are: fire opal, sapphire, garnet, citrine, topaz, carnelian, amber, coral, pearl, moonstone, sunstone, calcite, quartz and tourmaline ";
Quotation[31] = "Zebras can't see the color Orange.";
Quotation[32] = "Orange Carnations: Fascination, admiration, pure love, and my heart yearns for you, a mother’s love.";
Quotation[33] = "In Ireland, Orange is the colour of the Protestants.";
Quotation[34] = "In the United States, the colour is used to convey inexpensive goods.";



// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
