function month_of_year()
{
var monthcontent=new Array()
monthcontent[0]="/images/home/cal-icons/cal-jan.jpg"; //January content
monthcontent[1]="/images/home/cal-icons/cal-feb.jpg"; //February content
monthcontent[2]="/images/home/cal-icons/cal-mar.jpg"; //March content
monthcontent[3]="/images/home/cal-icons/cal-apr.jpg"; //April content
monthcontent[4]="/images/home/cal-icons/cal-may.jpg"; //May content
monthcontent[5]="/images/home/cal-icons/cal-jun.jpg"; //June content
monthcontent[6]="/images/home/cal-icons/cal-jul.jpg"; //July content
monthcontent[7]="/images/home/cal-icons/cal-aug.jpg"; //August content
monthcontent[8]="/images/home/cal-icons/cal-sep.jpg"; //September content
monthcontent[9]="/images/home/cal-icons/cal-oct.jpg"; //October content
monthcontent[10]="/images/home/cal-icons/cal-nov.jpg"; //November content
monthcontent[11]="/images/home/cal-icons/cal-dec.jpg"; //December content

var mydate=new Date();
var mymonth=mydate.getMonth();
var present=mymonth;

var image=document.getElementById? document.getElementById("month_image") : document.all.month_image;
image.src=monthcontent[present];
}