// JavaScript Document
           <!--



              var today = new Date();



              var date = ((today.getDate()<10) ? "0" : "")+ today.getDate();



              var thismonth = new Array('January','February','March','April','May','June','July','August','September','October','November','December');



              var nextmonth = new Array('February','March','April','May','June','July','August','September','October','November','December','January');



              function year(number)	{return (number < 1000) ? number + 1900 : number;}



              var year = today.getYear();



              if (date < 3) {



                   todaysdate =  thismonth[today.getMonth()] + " " + 7 + "th";



              }



              else if (date < 11) {



                   todaysdate =  thismonth[today.getMonth()] + " " + 15 + "th";



              }



              else if (date < 17) {



                   todaysdate =  thismonth[today.getMonth()] + " " + 21 + "st";



              }



              else if ((date < 24) && (thismonth[today.getMonth()] == "February")) {



                   todaysdate =  thismonth[today.getMonth()] + " " + 28 + "th";



              }



              else if ((date > 23) && (thismonth[today.getMonth()] == "February")) {



                   todaysdate =  nextmonth[today.getMonth()] + " " + 7 + "th";



                   if (nextmonth[today.getMonth()] == "January")  {



                       year = year +1;



                   }



              }



              else if (date < 26) {



                   todaysdate =  thismonth[today.getMonth()] + " " + 30 + "th";



              }



              else if (date > 25) {



                   todaysdate =  nextmonth[today.getMonth()] + " " + 7 + "th";



                   if (nextmonth[today.getMonth()] == "January")  {



                       year = year +1;



                   }



              }



              document.write(todaysdate,".");



           //-->
