var YD = new Date();
  	var YS = YD.getMonth();

if (YS==0)
  JDmonth="January";
if (YS==1)
JDmonth="February";
if (YS==2)
JDmonth="March";
if (YS==3)
JDmonth="April";
if (YS==4)
  JDmonth="May";
if (YS==5)
  JDmonth="June";
if (YS==6)
  JDmonth="July";
if (YS==7)
  JDmonth="August";
if (YS==8)
  JDmonth="September";
if (YS==9)
  JDmonth="October";
 if (YS==10)
  JDmonth="November";
if (YS==11)
  JDmonth="December";
  
if (YS=="0")
 blurb=JDmonth+" is the start of a new year, we love building web sites in the new year.";
if (YS=="1")
 blurb=" Don\'t forget Valentine\s Day this month. We love building web sites in "+JDmonth+".";
if (YS=="2")
 blurb=JDmonth+" is the first month of Autumn (Fall) in Australia, we love building web sites in Autumn.";
if (YS=="3")
 blurb=JDmonth+" is no time for fools, we\'re no fools when it comes to building web sites.";
if (YS=="4")
 blurb=JDmonth+" is the second month of Spring, we love building web sites in Spring.";
if (YS=="5")
 blurb=JDmonth+" is the start of Winter in Australia, we love building web sites in Winter.";
if (YS=="6")
 blurb=JDmonth+" is the second month of Winter in Australia, we love building web sites in Winter.";
if (YS=="7")
 blurb=JDmonth+" is Winter in Australia, we love building web sites in Winter.";
if (YS=="8")
 blurb=JDmonth+" is the first month of Spring in Australia, we love building web sites in Spring.";
if (YS=="9")
 blurb="We love building web sites in "+JDmonth+", it is the second month of Spring in Australia.";
 if (YS=="10")
 blurb=JDmonth+" is the month of The Melbourne Cup, but we still love building web sites.";
if (YS=="11")
 blurb=JDmonth+" is the first month of Summer in Australia, we love building web sites in summer.";

			function monthBlurb(){
			
				document.write(blurb);
		return true;
	}