<!--
// please keep this text when you copy the source code
// made by Ragecreations version 0.2

//Get Date two
var monthx=new Array(13);
monthx[1]="january";
monthx[2]="february";
monthx[3]="march";
monthx[4]="april";
monthx[5]="may";
monthx[6]="june";
monthx[7]="july";
monthx[8]="august";
monthx[9]="september";
monthx[10]="october";
monthx[11]="november";
monthx[12]="december";
var time2=new Date();
var month2=monthx[time2.getMonth() + 1];

//Get Date
var months=new Array(13);
months[1]="jan";
months[2]="feb";
months[3]="mar";
months[4]="apr";
months[5]="may";
months[6]="jun";
months[7]="jul";
months[8]="aug";
months[9]="sep";
months[10]="oct";
months[11]="nov";
months[12]="dec";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var xdate=time.getDate();
var ydate=xdate;
if (xdate < 10)
xdate = ("0" + xdate);
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var timeValue = "" + ((hours >12) ? hours -12 :hours)
if (timeValue == "0") timeValue = 12;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += (hours >= 12) ? " pm" : " am"

//Get Day
var days=new Array(7);
days[0]="Sunday";
days[1]="Monday";
days[2]="Tuesday";
days[3]="Wednesday";
days[4]="Thursday";
days[5]="Friday";
days[6]="Saturday";
var lday=days[time.getDay()];

//Get Address
var addr=new String();
addr = ("<a href='http://lambfood-old.seranates.com/"  +lmonth + "/"  +month2 + xdate + ".htm'>" + " Todays devotional:" +lday + ", "  + month2 + " " + ydate  + "</a>");

//-->


