var curdate = new Date()
var month = curdate.getMonth() // Month value starts from 0=Jan ... 11=Dec
//var month = 3 // Manually set Month to test
var pausecontent = new Array()
if(month == 0) { // messages for January
pausecontent[0]='Season\'s Greetings from Billy D\'s Lawn Care! Spring is just around the corner.'
pausecontent[1]='You can call us for Spring maintenance. It\'s never too early.<a href="discont.php" class="more">Read More &raquo;</a>'
}
else if(month == 1 || month <= 3) { // messages from February - April 
pausecontent[0]='Billy D\'s Lawn Care is a must for your Spring and Summer projects.<a href="discount.php" class="more">Read More &raquo;</a>'
pausecontent[1]='Spring Cleanup Contracts due by April 1st'
pausecontent[2]='All your lawn care needs are provided by Billy D\'s services.<a href="discount.php" class="more">Read More &raquo;</a>'
pausecontent[3]='Seasonal Lawn Service Contracts due by April 1st'
}
else if(month == 4 || month <= 9) { // messages for May - October
pausecontent[0]='Discount available for Fall cleanup. Book early and save...<a href="discount.php" class="more">Read More &raquo;</a>'
pausecontent[1]='Fall Cleanup Contracts due by October 1st'
pausecontent[2]='Never too early to sign up for Snow Plowing Contracts. <a href="discount.php" class="more">Read More &raquo;</a>'
pausecontent[3]='Snowplow Contracts due by October 1st'
pausecontent[4]='Seasonal Renewal for Lawn Services due by October 15th'
}
else if(month == 10) { // messages for October - November
pausecontent[0]='Happy Thanksgiving!'
pausecontent[1]='We may still have limited slots for snow plowing. Call us for reservation.<a href="contact.php" class="more">Contact Us &raquo;</a>'
}
else if(month == 11) { // messages for December
pausecontent[0]='Happy Holidays from Billy D\'s Lawn Care!'
pausecontent[1]='December is here! Year is almost at end. Prepare for Spring...'
}
else {
pausecontent[0]='Update is not available at this time.'
pausecontent[1]='Please see our <b>Discount Corner</b> for savings!<a href="discount.php" class="more">Read More &raquo;</a>'
}
