var today_obj=new Date()
var today_date=today_obj.getDate()

var tips=new Array()
//The below variable contains the "header" of the tip

var tiptitle='<h3>Daily Quote:</h3> '

//Configure the following array to hold the 31 tips for the month

tips[1]='<p style="color:yellow;">One photo out of focus is a mistake, ten photo out of focus are an experimentation, one hundred photo out of focus are a style.<br />&mdash;Author Unknown</p>'
tips[2]='<p style="color:yellow;">The creative act lasts but a brief moment, a lightning instant of give-and-take, just long enough for you to level the camera and to trap the fleeting prey in your little box.<br />&mdash;Henri Cartier Bresson</p>'
tips[3]='<p style="color:yellow;">I&#39;m not a particularly verbose person.  I think that&#39;s why I like taking pictures... they speak for themselves.<br />&mdash;Jeb Dickerson</p>'
tips[4]='<p style="color:yellow;">A Ming vase can be well-designed and well-made and is beautiful for that reason alone.  I don&#39;t think this can be true for photography.  Unless there is something a little incomplete and a little strange, it will simply look like a copy of something pretty.  We won&#39;t take an interest in it.<br />&mdash;John Loengard</p>'
tips[5]='<p style="color:yellow;">A picture is worth a thousand words; a slide show is both.<br />&mdash;Author Unknown</p>'
tips[6]='<p style="color:yellow;">Photographs that transcend but do not deny their literal situation appeal to me.<br />&mdash;Sam Abbel</p>'
tips[7]='<p style="color:yellow;">The photograph itself doesn&#39;t interest me.  I want only to capture a minute part of reality.<br />&mdash;Henri Cartier Bresson</p>'
tips[8]='<p style="color:yellow;">If I could tell the story in words, I wouldn&#39;t need to lug around a camera.<br />&mdash;Lewis Hine</p>'
tips[9]='<p style="color:yellow;">Everyone has a photographic memory, but not everyone has film.<br />&mdash;Author Unknown</p>'
tips[10]='<p style="color:yellow;">The negative is the equivalent of the composer&#39;s score, and the print the performance.<br />&mdash;Ansel Adams </p>'
tips[11]='<p style="color:yellow;">Our job is to record, each in his own way, this world of light and shadow and time that will never come again exactly as it is today.<br />&mdash;Edward Abbey</p>'
tips[12]='<p style="color:yellow;">I discovered that while many photographers think alike when it comes to equipment and chemistry, there are seldom two who agree on anything when it comes to what constitutes a good image.<br />&mdash;Peter Adams</p>'
tips[13]='<p style="color:yellow;">Henry James proposed asking of art three modest and appropriate questions: What is the artist trying to do? Does he do it? Was it worth doing?<br />&mdash;Robert Adams</p>'
tips[14]='<p style="color:yellow;">Digital photography is doing for photography what the piano did for keyboard music.<br />&mdash;Faul Bosman</p>'
tips[15]='<p style="color:yellow;">The best part of beauty is that which no picture can express.<br />&mdash;Francis Bacon</p>'
tips[16]='<p style="color:yellow;">Quit trying to find beautiful objects to photograph. Find the ordinary objects so you can transform it by photographing it.<br />&mdash;Morley Baer</p>'
tips[17]='<p style="color:yellow;">If you can&#39;t make it better make it bigger.<br />&mdash;Anonymous</p>'
tips[18]='<p style="color:yellow;">I&#39;ve always found it very difficult with pictures. I&#39;m too critical. I always enjoy modeling but I don&#39;t always like the pictures.<br />&mdash;Catherine Bailey</p>'
tips[19]='<p style="color:yellow;">A photograph can be an instant of life captured for eternity that will never cease looking back at you.<br />&mdash;Brigitte Bardot</p>'
tips[20]='<p style="color:yellow;">Does it interest the eye, excite the brain, move the mind to reflection, and involve the heart?<br />&mdash;Julian Barnes</p>'
tips[21]='<p style="color:yellow;">Cameras are boxes for transporting appearances.<br />&mdash;Bartholomae</p>'
tips[22]='<p style="color:yellow;">The hardest thing about being a photographer is, you have to take pictures.<br />&mdash;Doug Bartlow</p>'
tips[23]='<p style="color:yellow;">The art of photography is to make that which seems unbeautiful, beautiful.<br />&mdash;Jennifer Barton</p>'
tips[24]='<p style="color:yellow;">The quality of art cannot be based upon the effort used to create it.<br />&mdash;Doug Bartlow</p>'
tips[25]='<p style="color:yellow;">Business is business. The sooner photographers start learning about and navigating business instead of wasting time trying to control the inevitable forces at play, the better it will be for that photographer.<br />&mdash;Anonymous</p>'
tips[26]='<p style="color:yellow;">The photographic image... is a message without a code.<br />&mdash;Roland Barnes</p>'
tips[27]='<p style="color:yellow;">When people ask what equipment I use - I tell them my eyes.<br />&mdash;Anonymous</p>'
tips[28]='<p style="color:yellow;">Photographers, you will never become artists. All you are is mere copiers.<br />&mdash;Charles Baudelaire</p>'
tips[29]='<p style="color:yellow;">What is the most important element of photojournalism: Light? Moment? Composition? You are wrong. - It&#39;s magic.<br />&mdash;Anonymous</p>'
tips[30]='<p style="color:yellow;">A camera is a hollow tube that allows free-flowing, inward and outward expressions of love between a photographer and a subject.<br />&mdash;Anonymous</p>'
tips[31]='<p style="color:yellow;">It takes a lot of imagination to be a good photographer. You need less imagination to be a painter, because you can invent things. But in photography everything is so ordinary; it takes a lot of looking before you learn to see the ordinary.<br />&mdash;David Bailey</p>'

document.write(tiptitle)
document.write(tips[today_date])

