var today_obj=new Date()
var today_date=today_obj.getDate()

var tips=new Array()
//Configure the below variable to contain the "header" of the tip
var tiptitle='<h1>Presentation Tip of the day</h1>'

//Configure the below array to hold the 31 possible tips of the month
tips[1]='<p class="green">Your audience is the most important part of your presentation. </p>'
tips[2]='<p class="green">Being nervous is perfectly natural - dont worry about it</p>'
tips[3]='<p class="green">No matter how unprepared you are never start a presentation with an apology</p>'
tips[4]='<p class="green"> Ensure you have a "call to action" that reinforces your objective</p>'
tips[5]='<p class="green">Make sure any whiteboards are clean and that there is blank sheet on the front of the flipchart</p>'
tips[6]='<p class="green"> Never use a full script, it will make you sound boring and lacking in emotion.</p>'
tips[7]='<p class="green">Do not rely on your slides to remind you what to talk about next, the audience will read them and get ahead of you</p>'
tips[8]='<p class="green">Make sure your mobile is turned off or on silent before you start</p>'
tips[9]='<p class="green">In PowerPoint press "B" to blank the screen or "W" to make it all white</p>'
tips[10]='<p class="green">Turn off the screensaver on your PC / laptop, so that it wont flash up in the middle of your presentation</p>'
tips[11]='<p class="green">To stop using err, um, and other filler words, have a friend sit at the back and raise their hand every time you say it.</p>'
tips[12]='<p class="green">Forget all the corporate phraseology, talk like you are talking to a friend or relative</p>'
tips[13]='<p class="green">Remember your audience want you to succeed, they want a lively, emotive, commanding performance so go give one</p>'
tips[14]='<p class="green">There is only enough time to cover 3 main points in a 45 minute presentation.</p>'
tips[15]='<p class="green">Start by grabbing your audiences attention, to ensure that they are listening to you</p>'
tips[16]='<p class="green">Give the chairman or MC an introduction written on a cue card, so that they know how to introduce you</p>'
tips[17]='<p class="green">People are rarely enthused by logic, they are enthused by emotion</p>'
tips[18]='<p class="green">KISS - Keep it simple stupid - The key rule when creating and delivering your presentation</p>'
tips[19]='<p class="green">Prepare positive answers for the three worst questions you could be asked.</p>'
tips[20]='<p class="green">Presentation usually take at least 10% longer in real life compared to rehearsals</p>'
tips[21]='<p class="green">Visual Aids should be exactly what it says on the tin. Visual and helpful. Not text, not speaker notes, not boring</p>'
tips[22]='<p class="green"> You are in control of your presentation, set the expectations and your audience should behave.</p>'
tips[23]='<p class="green">Think about why your audience should be listening not why you should be talking.</p>'
tips[24]='<p class="green">Dont hold on to a lectern, you wont be able to let go</p>'
tips[25]='<p class="green">Practise your presentation out loud, not just in your head</p>'
tips[26]='<p class="green">In a sales presentation, never mention the competitors by name, you end up endorsing them as valid competitors.</p>'
tips[27]='<p class="green">Confucius said "I here I forget, I see I remember, I do I understand". Make your audience doing something</p>'
tips[28]='<p class="green">Giving the same presentation repeatedly?  Remember you always have to sell it not just tell it</p>'
tips[29]='<p class="green">Poor preparation produces perfectly pathetic presentations and failing to plan is planning to fail.</p>'
tips[30]='<p class="green">People can read slides far faster than you can say it. Dont echo what the slide says, the audience already know that.</p>'
tips[31]='<p class="green"> Stop worrying about bodylangauge. If you mean what you say, your bodylanguage will echo what you mean</p>'

document.write(tips[today_date])
	


