// find out month.
today=new Date();
month=today.getMonth()+1;
// Winter
if ((month==1) || (month==2) || (month==12))
{ document.write("<a rel=group1 title=Winter href=http://www.dr-alex-rollrasen.de/images/winter_large.jpg><img border=0 alt=Winter src=http://www.dr-alex-rollrasen.de/images/winter.jpg hspace=3 vspace=3 width=200 height=150></img></a>"); }
// Spring
if ((month==3) || (month==4) || (month==5))
{ document.write("<a rel=group1 title=FrŸhling href=http://www.dr-alex-rollrasen.de/images/spring_large.jpg><img border=0 alt=FrŸhling src=http://www.dr-alex-rollrasen.de/images/spring.jpg hspace=3 vspace=3 width=200 height=150></img></a>"); }
// Summer
if ((month==6) || (month==7) || (month==8))
{ document.write("<a rel=group1 title=Sommer href=http://www.dr-alex-rollrasen.de/images/summer_large.jpg><img border=0 alt=Sommer src=http://www.dr-alex-rollrasen.de/images/summer.jpg hspace=3 vspace=3 width=200 height=150></img></a>"); }
// Autumn
if ((month==9) || (month==10) || (month==11))
{ document.write("<a rel=group1 title=Herbst href=http://www.dr-alex-rollrasen.de/images/autumn_large.jpg><img border=0 alt=Herbst src=http://www.dr-alex-rollrasen.de/images/autumn.jpg hspace=3 vspace=3 width=200 height=150></img></a>"); }

