
<!-- hide from non-script browsers

function Dater() {

now = new Date();
aMonth = new Array('Jan', 'Feb', 'March', 'April', 'May', 'June', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec');

	if(now.getDate()==1) post='st'; if(now.getDate()==2) post='nd';
        if(now.getDate()==3) post='rd'; if(now.getDate()>=4 && now.getDate()<=20) post='th';
        if(now.getDate()==21) post='st'; if(now.getDate()==22) post='nd';
        if(now.getDate()==23) post='rd'; if(now.getDate()>=24 && now.getDate()<=30) post='th';
        if(now.getDate()==31) post='st';

myDate = +now.getDate()+''+post+' '+aMonth[now.getMonth()]+'';

        document.write(myDate);
}
//end hide -->
 