var month = (new Date()).getMonth() + 1;
var specials = new Array();
specials[0]  = ""; /* month 0 is ignored */
specials[1]  = "4 free boxes when you rent a unit.";
specials[2]  = "Pre-pay 3 months and get the fourth month free.";
specials[3]  = "Refer a friend and we'll take $20 off your next month's rent.";
specials[4]  = "Free pad lock when you rent a unit.";
specials[5]  = "4 free boxes when you rent a unit.";
specials[6]  = "Pre-pay 3 months and get the fourth month free.";
specials[7]  = "Refer a friend and we'll take $20 off your next month's rent.";
specials[8]  = "Free pad lock when you rent a unit.<br><br>4x6 room for $50/month.";
specials[9]  = "4 free boxes when you rent a unit.<br><br>4x6 room for $50/month.";
specials[10] = "Pre-pay 3 months and get the fourth month free. (Move in Special is only for new tenants).";
specials[11] = "Refer a friend and we'll take $20 off your next month's rent.";
specials[12] = "Free pad lock when you rent a unit.";

document.write('<img style="padding-left: 30px;" align="left" src="/images/specials' + month + '.png"> <br><b>' + specials[month] + '</b><br>');
