/*
Count up from A1 Javascripts-
http://www.a1javascripts.com
Home to over 150+ free scripts!
*/

montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countup(yr,m,d){
today=new Date()
todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
todaym=today.getMonth()
todayd=today.getDate()
todaystring=montharray[todaym]+" "+todayd+", "+todayy
paststring=montharray[m-1]+" "+d+", "+yr
difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=" Gaian rotations" 
document.write("These spirit guides also divine my nativity at "+difference+" ago, ")
}
//enter the count up date using the format year/month/day
countup(1956,02,27)
